Title: [219601] trunk/LayoutTests
Revision
219601
Author
mcatanz...@igalia.com
Date
2017-07-17 22:19:16 -0700 (Mon, 17 Jul 2017)

Log Message

Unreviewed GTK test gardening

* TestExpectations: Skip tests that are clearly intended to have Skip expectations.
* platform/gtk/TestExpectations:
* platform/gtk/crypto/subtle/aes-cbc-cfb-encrypt-malformed-parameters-expected.txt:

Modified Paths

Added Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (219600 => 219601)


--- trunk/LayoutTests/ChangeLog	2017-07-18 04:06:55 UTC (rev 219600)
+++ trunk/LayoutTests/ChangeLog	2017-07-18 05:19:16 UTC (rev 219601)
@@ -1,3 +1,11 @@
+2017-07-17  Michael Catanzaro  <mcatanz...@igalia.com>
+
+        Unreviewed GTK test gardening
+
+        * TestExpectations: Skip tests that are clearly intended to have Skip expectations.
+        * platform/gtk/TestExpectations:
+        * platform/gtk/crypto/subtle/aes-cbc-cfb-encrypt-malformed-parameters-expected.txt:
+
 2017-07-17  Timothy Horton  <timothy_hor...@apple.com>
 
         Page using safe area constant properties jumps to correct layout after resize

Modified: trunk/LayoutTests/TestExpectations (219600 => 219601)


--- trunk/LayoutTests/TestExpectations	2017-07-18 04:06:55 UTC (rev 219600)
+++ trunk/LayoutTests/TestExpectations	2017-07-18 05:19:16 UTC (rev 219601)
@@ -77,11 +77,11 @@
 fast/harness/uiscriptcontroller [ Skip ]
 
 # This test only makes sense on Mac
-fast/attachment/attachment-subtitle-resize.html
+fast/attachment/attachment-subtitle-resize.html [ Skip ]
 
 # This test only makes sense on iOS
-fast/attachment/attachment-wrapping-action.html
-fast/attachment/attachment-borderless.html
+fast/attachment/attachment-wrapping-action.html [ Skip ]
+fast/attachment/attachment-borderless.html [ Skip ]
 editing/selection/character-granularity-selected-range-after-dismissing-selection.html [ Skip ]
 editing/selection/character-granularity-select-text-with-click-handler.html [ Skip ]
 editing/selection/caret-after-tap-in-editable-selection.html [ Skip ]

Modified: trunk/LayoutTests/platform/gtk/TestExpectations (219600 => 219601)


--- trunk/LayoutTests/platform/gtk/TestExpectations	2017-07-18 04:06:55 UTC (rev 219600)
+++ trunk/LayoutTests/platform/gtk/TestExpectations	2017-07-18 05:19:16 UTC (rev 219601)
@@ -3438,6 +3438,10 @@
 webkit.org/b/174461 inspector/canvas/requestContent-2d.html [ Failure ]
 webkit.org/b/174461 inspector/canvas/requestContent-webgl.html [ Failure ]
 
+webkit.org/b/174609 accessibility/presentation-role-iframe.html [ Failure ]
+
+webkit.org/b/174610 fast/forms/content-with-margins-inside-button.html [ Failure ]
+
 #////////////////////////////////////////////////////////////////////////////////////////
 # End of non-crashing, non-flaky tests failing
 #////////////////////////////////////////////////////////////////////////////////////////

Modified: trunk/LayoutTests/platform/gtk/crypto/subtle/aes-cbc-cfb-encrypt-malformed-parameters-expected.txt (219600 => 219601)


--- trunk/LayoutTests/platform/gtk/crypto/subtle/aes-cbc-cfb-encrypt-malformed-parameters-expected.txt	2017-07-18 04:06:55 UTC (rev 219600)
+++ trunk/LayoutTests/platform/gtk/crypto/subtle/aes-cbc-cfb-encrypt-malformed-parameters-expected.txt	2017-07-18 05:19:16 UTC (rev 219601)
@@ -3,12 +3,12 @@
 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
 
 
-PASS crypto.subtle.encrypt("aes-cbc", key, plainText) rejected promise  with TypeError: Member AesCbcCfbParams.iv is required and must be an instance of BufferSource.
-PASS crypto.subtle.encrypt({name: "aes-cbc"}, key, plainText) rejected promise  with TypeError: Member AesCbcCfbParams.iv is required and must be an instance of BufferSource.
+PASS crypto.subtle.encrypt("aes-cbc", key, plainText) rejected promise  with TypeError: Member AesCbcCfbParams.iv is required and must be an instance of (ArrayBufferView or ArrayBuffer).
+PASS crypto.subtle.encrypt({name: "aes-cbc"}, key, plainText) rejected promise  with TypeError: Member AesCbcCfbParams.iv is required and must be an instance of (ArrayBufferView or ArrayBuffer).
 PASS crypto.subtle.encrypt({name: "aes-cbc", iv: true}, key, plainText) rejected promise  with TypeError: Type error.
 PASS crypto.subtle.encrypt({name: "aes-cbc", iv: 1}, key, plainText) rejected promise  with TypeError: Type error.
 PASS crypto.subtle.encrypt({name: "aes-cbc", iv: null}, key, plainText) rejected promise  with TypeError: Type error.
-PASS crypto.subtle.encrypt({name: "aes-cbc", iv: undefined}, key, plainText) rejected promise  with TypeError: Member AesCbcCfbParams.iv is required and must be an instance of BufferSource.
+PASS crypto.subtle.encrypt({name: "aes-cbc", iv: undefined}, key, plainText) rejected promise  with TypeError: Member AesCbcCfbParams.iv is required and must be an instance of (ArrayBufferView or ArrayBuffer).
 PASS crypto.subtle.encrypt({name: "aes-cbc", iv: Symbol()}, key, plainText) rejected promise  with TypeError: Type error.
 PASS crypto.subtle.encrypt({name: "aes-cbc", iv: { }}, key, plainText) rejected promise  with TypeError: Type error.
 PASS crypto.subtle.encrypt({name: "aes-cbc", iv: "foo"}, key, plainText) rejected promise  with TypeError: Type error.

Added: trunk/LayoutTests/platform/gtk/fast/events/touch/document-create-touch-list-expected.txt (0 => 219601)


--- trunk/LayoutTests/platform/gtk/fast/events/touch/document-create-touch-list-expected.txt	                        (rev 0)
+++ trunk/LayoutTests/platform/gtk/fast/events/touch/document-create-touch-list-expected.txt	2017-07-18 05:19:16 UTC (rev 219601)
@@ -0,0 +1,24 @@
+This tests support for the document.createTouchList API.
+
+On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
+
+
+PASS "createTouchList" in document is true
+PASS touchList is non-null.
+PASS touchList.length is 0
+PASS touchList.item(0) is null
+PASS touchList.item(1) is null
+PASS touchList.item() threw exception TypeError: Not enough arguments.
+PASS ts instanceof TouchEvent is true
+PASS ts.touches instanceof TouchList is true
+PASS ts.touches.length is 2
+PASS ts.touches[0] instanceof Touch is true
+PASS ts.touches[0].identifier is 12341
+PASS ts.touches[0].clientX is 60
+PASS ts.touches[1].screenY is 120
+PASS ts.ctrlKey is true
+PASS document.createTouchList(1, 2) threw exception TypeError: Type error.
+PASS successfullyParsed is true
+
+TEST COMPLETE
+
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to