Skip to content

Commit

Permalink
REGRESSION(iOS17): [ iOS17 wk2 ] accessibility/ios-simulator/input-ty…
Browse files Browse the repository at this point in the history
…pe-time.html is a constant failure.

https://bugs.webkit.org/show_bug.cgi?id=263048
rdar://116837628

Reviewed by Chris Fleizach.

CLDR 42 replaced U+0020 with U+202F when formatting dates. That does
not seem like a sustainable change, but here it is.

As such nothing regressed with regards to what this test was testing.

* LayoutTests/accessibility/ios-simulator/input-type-time-expected.txt:
* LayoutTests/accessibility/ios-simulator/input-type-time.html:
* LayoutTests/platform/ios-wk2/TestExpectations:

Canonical link: https://commits.webkit.org/272041@main
  • Loading branch information
annevk committed Dec 14, 2023
1 parent e44bf50 commit 7f798b8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE

PASS timeinput.description is 'AXLabel: (Between: 07:00 AM-09:00 AM)'
PASS timeinput.isIgnored is false
PASS timeinput.stringValue is 'AXValue: 8:00 AM'
PASS timeinput.stringValue is 'AXValue: 8:00AM'
PASS timeinput2.description is 'AXLabel: '
PASS timeinput2.stringValue is 'AXValue: 8:00 AM'
PASS timeinput2.stringValue is 'AXValue: 8:00AM'
PASS successfullyParsed is true

TEST COMPLETE
Expand Down
6 changes: 3 additions & 3 deletions LayoutTests/accessibility/ios-simulator/input-type-time.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<meta charset=utf-8>
<script>
var successfullyParsed = false;
</script>
Expand All @@ -26,9 +27,9 @@
shouldBeFalse("timeinput.isIgnored");

// Test value is exposed in AXValue.
shouldBe("timeinput.stringValue", "'AXValue: 8:00 AM'");
shouldBe("timeinput.stringValue", "'AXValue: 8:00AM'");
shouldBe("timeinput2.description", "'AXLabel: '");
shouldBe("timeinput2.stringValue", "'AXValue: 8:00 AM'");
shouldBe("timeinput2.stringValue", "'AXValue: 8:00AM'");
}

successfullyParsed = true;
Expand All @@ -37,4 +38,3 @@
<script src="../../resources/js-test-post.js"></script>
</body>
</html>

2 changes: 0 additions & 2 deletions LayoutTests/platform/ios-wk2/TestExpectations
Original file line number Diff line number Diff line change
Expand Up @@ -2427,8 +2427,6 @@ webkit.org/b/261957 media/audio-play-with-video-element-interrupted.html [ Pass
# Requires the fix in rdar://108457321.
css3/scroll-snap/ios/scroll-snap-mainframe-pinch-out.html [ Skip ]

webkit.org/b/263048 accessibility/ios-simulator/input-type-time.html [ Failure ]

webkit.org/b/263052 fast/events/ios/keydown-keyup-keypress-keys-in-non-editable-using-chinese-keyboard.html [ Skip ]

webkit.org/b/263662 fast/forms/listbox-bidi-align.html [ Failure ]
Expand Down

0 comments on commit 7f798b8

Please sign in to comment.