Changeset 264010 in webkit
- Timestamp:
- Jul 6, 2020, 9:44:17 PM (6 years ago)
- Location:
- trunk/LayoutTests
- Files:
-
- 1 added
- 4 edited
-
ChangeLog (modified) (1 diff)
-
platform/glib/TestExpectations (modified) (2 diffs)
-
platform/gtk/imported/w3c/web-platform-tests/html/semantics/forms/constraints/form-validation-willValidate-expected.txt (modified) (1 diff)
-
platform/gtk/imported/w3c/web-platform-tests/html/semantics/forms/the-input-element/valueMode-expected.txt (added)
-
platform/gtk/imported/w3c/web-platform-tests/html/semantics/selectors/pseudo-classes/readwrite-readonly-expected.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r264009 r264010 1 2020-07-06 Lauro Moura <lmoura@igalia.com> 2 3 [GTK][WPE] Imported semantics tests gardening after r263987 4 5 Unreviewed test gardening. 6 7 * platform/glib/TestExpectations: 8 * platform/gtk/imported/w3c/web-platform-tests/html/semantics/forms/constraints/form-validation-willValidate-expected.txt: 9 * platform/gtk/imported/w3c/web-platform-tests/html/semantics/forms/the-input-element/valueMode-expected.txt: Added. 10 * platform/gtk/imported/w3c/web-platform-tests/html/semantics/selectors/pseudo-classes/readwrite-readonly-expected.txt: 11 1 12 2020-07-06 Chris Dumez <cdumez@apple.com> 2 13 -
trunk/LayoutTests/platform/glib/TestExpectations
r263965 r264010 143 143 webkit.org/b/211995 fast/images/animated-image-mp4.html [ Failure ] 144 144 webkit.org/b/213947 media/vp9.html [ Failure ] 145 146 # These two are affected by a broken ogv that can't be read by the Gstreamer from SDK. 147 webkit.org/b/205916 imported/w3c/web-platform-tests/html/semantics/embedded-content/media-elements/track/track-element/track-cues-cuechange.html [ Skip ] 148 webkit.org/b/205916 imported/w3c/web-platform-tests/html/semantics/embedded-content/media-elements/track/track-element/track-cues-cuechange-dynamically-created-track-element.html [ Skip ] 149 150 webkit.org/b/214031 imported/w3c/web-platform-tests/html/semantics/embedded-content/the-video-element/video-poster-shown-preload-auto.html [ ImageOnlyFailure ] 145 151 146 152 #//////////////////////////////////////////////////////////////////////////////////////// … … 416 422 webkit.org/b/213709 imported/w3c/web-platform-tests/cors/credentials-flag.htm [ Pass ] 417 423 424 webkit.org/b/214029 imported/w3c/web-platform-tests/html/semantics/embedded-content/the-video-element/resize-during-playback.html [ Failure ] 425 426 webkit.org/b/214033 imported/w3c/web-platform-tests/html/semantics/forms/the-input-element/input-valueasdate.html [ Failure ] 427 418 428 #//////////////////////////////////////////////////////////////////////////////////////// 419 429 # End of WPT-related bugs -
trunk/LayoutTests/platform/gtk/imported/w3c/web-platform-tests/html/semantics/forms/constraints/form-validation-willValidate-expected.txt
r239564 r264010 39 39 PASS [INPUT in COLOR status] Must be barred from the constraint validation if it is disabled 40 40 PASS [INPUT in COLOR status] The willValidate attribute must be true if an element is mutable 41 PASS [INPUT in COLOR status] Must be barred from the constraint validation if it is readonly 41 FAIL [INPUT in COLOR status] Must be not barred from the constraint validation even if it is readonly assert_true: The willValidate attribute should be true. expected true got false 42 42 PASS [INPUT in COLOR status] The willValidate attribute must be false if it has a datalist ancestor 43 43 PASS [INPUT in FILE status] Must be barred from the constraint validation if it is disabled 44 44 PASS [INPUT in FILE status] The willValidate attribute must be true if an element is mutable 45 PASS [INPUT in FILE status] Must be barred from the constraint validation if it is readonly 45 FAIL [INPUT in FILE status] Must be not barred from the constraint validation even if it is readonly assert_true: The willValidate attribute should be true. expected true got false 46 46 PASS [INPUT in FILE status] The willValidate attribute must be false if it has a datalist ancestor 47 47 PASS [INPUT in SUBMIT status] Must be barred from the constraint validation if it is disabled 48 48 PASS [INPUT in SUBMIT status] The willValidate attribute must be true if an element is mutable 49 PASS [INPUT in SUBMIT status] Must be barred from the constraint validation if it is readonly 49 FAIL [INPUT in SUBMIT status] Must be not barred from the constraint validation even if it is readonly assert_true: The willValidate attribute should be true. expected true got false 50 50 PASS [INPUT in SUBMIT status] The willValidate attribute must be false if it has a datalist ancestor 51 51 PASS [BUTTON in SUBMIT status] Must be barred from the constraint validation -
trunk/LayoutTests/platform/gtk/imported/w3c/web-platform-tests/html/semantics/selectors/pseudo-classes/readwrite-readonly-expected.txt
r262285 r264010 3 3 PASS The :read-only pseudo-class must match input elements to which the readonly attribute does not apply 4 4 PASS The :read-write pseudo-class must match input elements to which the readonly attribute applies, and that are mutable 5 FAIL The :read-only pseudo-class must not match input elements to which the readonly attribute applies, and that are mutable assert_array_equals: lengths differ, expected array [Element node <input id="input2" readonly=""></input>] length 1, got object "[object NodeList]" length 4 5 PASS The :read-only pseudo-class must not match input elements to which the readonly attribute applies, and that are mutable 6 6 PASS The :read-write pseudo-class must not match input elements after the readonly attribute has been added 7 FAIL The :read-only pseudo-class must match input elements after the readonly attribute has been added assert_array_equals: lengths differ, expected array [Element node <input id="input1" readonly="readonly"></input>, Element node <input id="input2" readonly=""></input>] length 2, got object "[object NodeList]" length 5 7 PASS The :read-only pseudo-class must match input elements after the readonly attribute has been added 8 8 PASS The :read-write pseudo-class must not match input elements after the readonly attribute has been removed 9 FAIL The :read-only pseudo-class must match input elements after the readonly attribute has been removed assert_array_equals: lengths differ, expected array [Element node <input id="input2" readonly=""></input>] length 1, got object "[object NodeList]" length 4 9 PASS The :read-only pseudo-class must match input elements after the readonly attribute has been removed 10 PASS The :read-write pseudo-class must not match input elements after the disabled attribute has been added 11 PASS The :read-only pseudo-class must match input elements after the disabled attribute has been added 12 PASS The :read-write pseudo-class must match input elements after the disabled attribute has been removed 13 PASS The :read-only pseudo-class must not match input elements after the disabled attribute has been removed 10 14 PASS The :read-write pseudo-class must match textarea elements that do not have a readonly attribute, and that are not disabled 11 15 PASS The :read-only pseudo-class must match textarea elements that have a readonly attribute, or that are disabled
Note:
See TracChangeset
for help on using the changeset viewer.