Title: [261801] trunk/LayoutTests
Revision
261801
Author
[email protected]
Date
2020-05-18 01:14:47 -0700 (Mon, 18 May 2020)

Log Message

Unreviewed WPE gardening. Providing custom baselines for tests
that require them.

* platform/wpe/crypto: Added.
* platform/wpe/crypto/subtle: Added.
* platform/wpe/crypto/subtle/ecdh-import-pkcs8-key-p521-validate-ecprivatekey-parameters-publickey-expected.txt: Added.
* platform/wpe/crypto/subtle/ecdsa-import-pkcs8-key-p521-validate-ecprivatekey-parameters-publickey-expected.txt: Added.
* platform/wpe/fast/layoutformattingcontext: Added.
* platform/wpe/fast/layoutformattingcontext/flow-integration-basic-expected.txt: Added.
* platform/wpe/fast/layoutformattingcontext/table-basic-row-baseline-align-expected.txt: Added.
* platform/wpe/fast/layoutformattingcontext/table-basic-row-baseline-with-nested-table-expected.txt: Added.
* platform/wpe/fast/layoutformattingcontext/table-basic-row-vertical-align-baseline-expected.txt: Added.
* platform/wpe/fast/layoutformattingcontext/table-fixed-width-colspans-expected.txt: Added.
* platform/wpe/fast/layoutformattingcontext/table-fixed-width-with-max-distribution-expected.txt: Added.
* platform/wpe/fast/layoutformattingcontext/table-flex-width-border-collapse-expected.txt: Added.
* platform/wpe/fast/layoutformattingcontext/table-flex-width-colspans-expected.txt: Added.
* platform/wpe/fast/layoutformattingcontext/table-simple-with-fixed-widht-and-inline-content-expected.txt: Added.
* platform/wpe/fast/layoutformattingcontext/table-with-column-spanner-first-row-expected.txt: Added.
* platform/wpe/webgl/1.0.3: Added.
* platform/wpe/webgl/1.0.3/conformance: Added.
* platform/wpe/webgl/1.0.3/conformance/context: Added.
* platform/wpe/webgl/1.0.3/conformance/context/methods-expected.txt: Added.

Modified Paths

Added Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (261800 => 261801)


--- trunk/LayoutTests/ChangeLog	2020-05-18 07:37:28 UTC (rev 261800)
+++ trunk/LayoutTests/ChangeLog	2020-05-18 08:14:47 UTC (rev 261801)
@@ -1,5 +1,30 @@
 2020-05-18  Zan Dobersek  <[email protected]>
 
+        Unreviewed WPE gardening. Providing custom baselines for tests
+        that require them.
+
+        * platform/wpe/crypto: Added.
+        * platform/wpe/crypto/subtle: Added.
+        * platform/wpe/crypto/subtle/ecdh-import-pkcs8-key-p521-validate-ecprivatekey-parameters-publickey-expected.txt: Added.
+        * platform/wpe/crypto/subtle/ecdsa-import-pkcs8-key-p521-validate-ecprivatekey-parameters-publickey-expected.txt: Added.
+        * platform/wpe/fast/layoutformattingcontext: Added.
+        * platform/wpe/fast/layoutformattingcontext/flow-integration-basic-expected.txt: Added.
+        * platform/wpe/fast/layoutformattingcontext/table-basic-row-baseline-align-expected.txt: Added.
+        * platform/wpe/fast/layoutformattingcontext/table-basic-row-baseline-with-nested-table-expected.txt: Added.
+        * platform/wpe/fast/layoutformattingcontext/table-basic-row-vertical-align-baseline-expected.txt: Added.
+        * platform/wpe/fast/layoutformattingcontext/table-fixed-width-colspans-expected.txt: Added.
+        * platform/wpe/fast/layoutformattingcontext/table-fixed-width-with-max-distribution-expected.txt: Added.
+        * platform/wpe/fast/layoutformattingcontext/table-flex-width-border-collapse-expected.txt: Added.
+        * platform/wpe/fast/layoutformattingcontext/table-flex-width-colspans-expected.txt: Added.
+        * platform/wpe/fast/layoutformattingcontext/table-simple-with-fixed-widht-and-inline-content-expected.txt: Added.
+        * platform/wpe/fast/layoutformattingcontext/table-with-column-spanner-first-row-expected.txt: Added.
+        * platform/wpe/webgl/1.0.3: Added.
+        * platform/wpe/webgl/1.0.3/conformance: Added.
+        * platform/wpe/webgl/1.0.3/conformance/context: Added.
+        * platform/wpe/webgl/1.0.3/conformance/context/methods-expected.txt: Added.
+
+2020-05-18  Zan Dobersek  <[email protected]>
+
         Unreviewed WPE gardening.
 
         * platform/wpe/TestExpectations:

Added: trunk/LayoutTests/platform/wpe/crypto/subtle/ecdh-import-pkcs8-key-p521-validate-ecprivatekey-parameters-publickey-expected.txt (0 => 261801)


--- trunk/LayoutTests/platform/wpe/crypto/subtle/ecdh-import-pkcs8-key-p521-validate-ecprivatekey-parameters-publickey-expected.txt	                        (rev 0)
+++ trunk/LayoutTests/platform/wpe/crypto/subtle/ecdh-import-pkcs8-key-p521-validate-ecprivatekey-parameters-publickey-expected.txt	2020-05-18 08:14:47 UTC (rev 261801)
@@ -0,0 +1,19 @@
+Test that importing P-521 EC keys for the ECDH algorithm through PKCS#8 fails in case of incorrect curve identifier or public key used in the ECPrivateKey structure
+
+On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
+
+
+ECDH: importing P-521 key that uses matching curve identifiers and valid public key in ECParameters structures in PKCS#8 ...
+PASS Successfully imported a P-521 key.
+ECDH: importing P-521 key whose curve identifiers in ECParameters structures in PKCS#8 don't match ...
+PASS importKey(pkcs8P521KeyMismatchedCurveIdentifiers) rejected promise.
+ECDH: importing P-521 key that has a public key in PKCS#8 of invalid length ...
+PASS importKey(pkcs8P521KeyInvalidPublicKeyLength) rejected promise.
+ECDH: importing P-521 key that has a public key in PKCS#8 of invalid EC point format ...
+PASS importKey(pkcs8P521KeyInvalidPublicKeyECPointFormat) rejected promise.
+ECDH: importing P-521 key that has an invalid public key in PKCS#8 ...
+PASS importKey(pkcs8P521KeyInvalidPublicKey) rejected promise.
+PASS successfullyParsed is true
+
+TEST COMPLETE
+

Added: trunk/LayoutTests/platform/wpe/crypto/subtle/ecdsa-import-pkcs8-key-p521-validate-ecprivatekey-parameters-publickey-expected.txt (0 => 261801)


--- trunk/LayoutTests/platform/wpe/crypto/subtle/ecdsa-import-pkcs8-key-p521-validate-ecprivatekey-parameters-publickey-expected.txt	                        (rev 0)
+++ trunk/LayoutTests/platform/wpe/crypto/subtle/ecdsa-import-pkcs8-key-p521-validate-ecprivatekey-parameters-publickey-expected.txt	2020-05-18 08:14:47 UTC (rev 261801)
@@ -0,0 +1,19 @@
+Test that importing P-521 EC keys for the ECDSA algorithm through PKCS#8 fails in case of incorrect curve identifier or public key used in the ECPrivateKey structure
+
+On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
+
+
+ECDSA: importing P-521 key that uses matching curve identifiers and valid public key in ECParameters structures in PKCS#8 ...
+PASS Successfully imported a P-521 key.
+ECDSA: importing P-521 key whose curve identifiers in ECParameters structures in PKCS#8 don't match ...
+PASS importKey(pkcs8P521KeyMismatchedCurveIdentifiers) rejected promise.
+ECDSA: importing P-521 key that has a public key in PKCS#8 of invalid length ...
+PASS importKey(pkcs8P521KeyInvalidPublicKeyLength) rejected promise.
+ECDSA: importing P-521 key that has a public key in PKCS#8 of invalid EC point format ...
+PASS importKey(pkcs8P521KeyInvalidPublicKeyECPointFormat) rejected promise.
+ECDSA: importing P-521 key that has an invalid public key in PKCS#8 ...
+PASS importKey(pkcs8P521KeyInvalidPublicKey) rejected promise.
+PASS successfullyParsed is true
+
+TEST COMPLETE
+

Added: trunk/LayoutTests/platform/wpe/fast/layoutformattingcontext/flow-integration-basic-expected.txt (0 => 261801)


--- trunk/LayoutTests/platform/wpe/fast/layoutformattingcontext/flow-integration-basic-expected.txt	                        (rev 0)
+++ trunk/LayoutTests/platform/wpe/fast/layoutformattingcontext/flow-integration-basic-expected.txt	2020-05-18 08:14:47 UTC (rev 261801)
@@ -0,0 +1,17 @@
+layer at (0,0) size 800x600
+  RenderView at (0,0) size 800x600
+layer at (0,0) size 800x258
+  RenderBlock {HTML} at (0,0) size 800x258
+    RenderBody {BODY} at (8,10) size 784x228
+      RenderBlock {DIV} at (5,0) size 379x36
+        RenderText {#text} at (0,0) size 353x35
+          text run at (0,0) width 353: "Text text text text text text text text text text text text text"
+          text run at (0,18) width 104: "text text text text"
+      RenderBlock {DIV} at (5,56) size 379x61 [border: (5px solid #000000) (15px solid #000000) (20px solid #000000) (10px solid #000000)]
+        RenderText {#text} at (10,5) size 353x35
+          text run at (10,5) width 353: "Text text text text text text text text text text text text text"
+          text run at (10,23) width 104: "text text text text"
+      RenderBlock {DIV} at (5,137) size 379x91 [border: (5px solid #000000) (15px solid #000000) (20px solid #000000) (10px solid #000000)]
+        RenderText {#text} at (15,15) size 299x35
+          text run at (15,15) width 299: "Text text text text text text text text text text text"
+          text run at (15,33) width 158: "text text text text text text"

Added: trunk/LayoutTests/platform/wpe/fast/layoutformattingcontext/table-basic-row-baseline-align-expected.txt (0 => 261801)


--- trunk/LayoutTests/platform/wpe/fast/layoutformattingcontext/table-basic-row-baseline-align-expected.txt	                        (rev 0)
+++ trunk/LayoutTests/platform/wpe/fast/layoutformattingcontext/table-basic-row-baseline-align-expected.txt	2020-05-18 08:14:47 UTC (rev 261801)
@@ -0,0 +1,19 @@
+layer at (0,0) size 800x600
+  RenderView at (0,0) size 800x600
+layer at (0,0) size 800x97
+  RenderBlock {HTML} at (0,0) size 800x97
+    RenderBody {BODY} at (8,8) size 784x81
+      RenderTable {TABLE} at (0,0) size 60x81
+        RenderTableSection {TBODY} at (0,0) size 60x81
+          RenderTableRow {TR} at (0,2) size 60x54
+            RenderTableCell {TD} at (2,2) size 47x54 [r=0 c=0 rs=1 cs=1]
+              RenderText {#text} at (1,42) size 5x11
+                text run at (1,42) width 5: "#"
+              RenderImage {IMG} at (6,1) size 40x50
+            RenderTableCell {TD} at (51,22) size 7x14 [r=0 c=1 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x12
+                text run at (1,2) width 5: "#"
+          RenderTableRow {TR} at (0,58) size 60x21
+            RenderTableCell {TD} at (2,58) size 56x21 [r=1 c=0 rs=1 cs=2]
+              RenderText {#text} at (5,5) size 15x11
+                text run at (5,5) width 15: "###"

Added: trunk/LayoutTests/platform/wpe/fast/layoutformattingcontext/table-basic-row-baseline-with-nested-table-expected.txt (0 => 261801)


--- trunk/LayoutTests/platform/wpe/fast/layoutformattingcontext/table-basic-row-baseline-with-nested-table-expected.txt	                        (rev 0)
+++ trunk/LayoutTests/platform/wpe/fast/layoutformattingcontext/table-basic-row-baseline-with-nested-table-expected.txt	2020-05-18 08:14:47 UTC (rev 261801)
@@ -0,0 +1,25 @@
+layer at (0,0) size 800x600
+  RenderView at (0,0) size 800x600
+layer at (0,0) size 800x73
+  RenderBlock {HTML} at (0,0) size 800x73
+    RenderBody {BODY} at (8,8) size 784x57
+      RenderTable {TABLE} at (0,0) size 29x57
+        RenderTableSection {TBODY} at (0,0) size 29x57
+          RenderTableRow {TR} at (0,2) size 29x30
+            RenderTableCell {TD} at (2,2) size 15x30 [r=0 c=0 rs=1 cs=1]
+              RenderTable {TABLE} at (1,1) size 11x17
+                RenderTableSection {TBODY} at (0,0) size 11x17
+                  RenderTableRow {TR} at (0,2) size 11x13
+                    RenderTableCell {TD} at (2,2) size 7x13 [r=0 c=0 rs=1 cs=1]
+                      RenderText {#text} at (1,1) size 5x11
+                        text run at (1,1) width 5: "#"
+              RenderBlock (anonymous) at (1,18) size 13x11
+                RenderText {#text} at (0,0) size 5x11
+                  text run at (0,0) width 5: "#"
+            RenderTableCell {TD} at (18,10) size 10x14 [r=0 c=1 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x12
+                text run at (1,2) width 5: "#"
+          RenderTableRow {TR} at (0,34) size 29x21
+            RenderTableCell {TD} at (2,34) size 26x21 [r=1 c=0 rs=1 cs=2]
+              RenderText {#text} at (5,5) size 15x11
+                text run at (5,5) width 15: "###"

Added: trunk/LayoutTests/platform/wpe/fast/layoutformattingcontext/table-basic-row-vertical-align-baseline-expected.txt (0 => 261801)


--- trunk/LayoutTests/platform/wpe/fast/layoutformattingcontext/table-basic-row-vertical-align-baseline-expected.txt	                        (rev 0)
+++ trunk/LayoutTests/platform/wpe/fast/layoutformattingcontext/table-basic-row-vertical-align-baseline-expected.txt	2020-05-18 08:14:47 UTC (rev 261801)
@@ -0,0 +1,19 @@
+layer at (0,0) size 800x600
+  RenderView at (0,0) size 800x600
+layer at (0,0) size 800x97
+  RenderBlock {HTML} at (0,0) size 800x97
+    RenderBody {BODY} at (8,8) size 784x81
+      RenderTable {TABLE} at (0,0) size 60x81
+        RenderTableSection {TBODY} at (0,0) size 60x81
+          RenderTableRow {TR} at (0,2) size 60x54
+            RenderTableCell {TD} at (2,2) size 47x54 [r=0 c=0 rs=1 cs=1]
+              RenderText {#text} at (1,42) size 5x11
+                text run at (1,42) width 5: "#"
+              RenderImage {IMG} at (6,1) size 40x50
+            RenderTableCell {TD} at (51,43) size 7x13 [r=0 c=1 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+          RenderTableRow {TR} at (0,58) size 60x21
+            RenderTableCell {TD} at (2,58) size 56x21 [r=1 c=0 rs=1 cs=2]
+              RenderText {#text} at (5,5) size 15x11
+                text run at (5,5) width 15: "###"

Added: trunk/LayoutTests/platform/wpe/fast/layoutformattingcontext/table-fixed-width-colspans-expected.txt (0 => 261801)


--- trunk/LayoutTests/platform/wpe/fast/layoutformattingcontext/table-fixed-width-colspans-expected.txt	                        (rev 0)
+++ trunk/LayoutTests/platform/wpe/fast/layoutformattingcontext/table-fixed-width-colspans-expected.txt	2020-05-18 08:14:47 UTC (rev 261801)
@@ -0,0 +1,152 @@
+layer at (0,0) size 800x600
+  RenderView at (0,0) size 800x600
+layer at (0,0) size 800x370
+  RenderBlock {HTML} at (0,0) size 800x370
+    RenderBody {BODY} at (8,8) size 784x354
+      RenderTable {TABLE} at (0,0) size 600x47
+        RenderTableSection {TBODY} at (0,0) size 600x47
+          RenderTableRow {TR} at (0,2) size 600x13
+            RenderTableCell {TD} at (2,2) size 198x13 [r=0 c=0 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 15x11
+                text run at (1,1) width 15: "###"
+            RenderTableCell {TD} at (201,2) size 198x13 [r=0 c=1 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+            RenderTableCell {TD} at (400,2) size 199x13 [r=0 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+          RenderTableRow {TR} at (0,17) size 600x13
+            RenderTableCell {TD} at (2,17) size 198x13 [r=1 c=0 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+            RenderTableCell {TD} at (201,17) size 198x13 [r=1 c=1 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+            RenderTableCell {TD} at (400,17) size 199x13 [r=1 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 15x11
+                text run at (1,1) width 15: "###"
+          RenderTableRow {TR} at (0,32) size 600x13
+            RenderTableCell {TD} at (2,32) size 198x13 [r=2 c=0 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+            RenderTableCell {TD} at (201,32) size 198x13 [r=2 c=1 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 15x11
+                text run at (1,1) width 15: "###"
+            RenderTableCell {TD} at (400,32) size 199x13 [r=2 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+      RenderTable {TABLE} at (0,47) size 600x47
+        RenderTableSection {TBODY} at (0,0) size 600x47
+          RenderTableRow {TR} at (0,2) size 600x13
+            RenderTableCell {TD} at (2,2) size 198x13 [r=0 c=0 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+            RenderTableCell {TD} at (201,2) size 198x13 [r=0 c=1 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+            RenderTableCell {TD} at (400,2) size 199x13 [r=0 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+          RenderTableRow {TR} at (0,17) size 600x13
+            RenderTableCell {TD} at (2,17) size 597x13 [r=1 c=0 rs=1 cs=3]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+          RenderTableRow {TR} at (0,32) size 600x13
+            RenderTableCell {TD} at (2,32) size 397x13 [r=2 c=0 rs=1 cs=2]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+            RenderTableCell {TD} at (400,32) size 199x13 [r=2 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+      RenderTable {TABLE} at (0,94) size 600x47
+        RenderTableSection {TBODY} at (0,0) size 600x47
+          RenderTableRow {TR} at (0,2) size 600x13
+            RenderTableCell {TD} at (2,2) size 280x13 [r=0 c=0 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 15x11
+                text run at (1,1) width 15: "###"
+            RenderTableCell {TD} at (283,2) size 198x13 [r=0 c=1 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 10x11
+                text run at (1,1) width 10: "##"
+            RenderTableCell {TD} at (482,2) size 117x13 [r=0 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+          RenderTableRow {TR} at (0,17) size 600x13
+            RenderTableCell {TD} at (2,17) size 597x13 [r=1 c=0 rs=1 cs=3]
+              RenderText {#text} at (1,1) size 30x11
+                text run at (1,1) width 30: "######"
+          RenderTableRow {TR} at (0,32) size 600x13
+            RenderTableCell {TD} at (2,32) size 479x13 [r=2 c=0 rs=1 cs=2]
+              RenderText {#text} at (1,1) size 25x11
+                text run at (1,1) width 25: "#####"
+            RenderTableCell {TD} at (482,32) size 117x13 [r=2 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+      RenderTable {TABLE} at (0,141) size 600x47
+        RenderTableSection {TBODY} at (0,0) size 600x47
+          RenderTableRow {TR} at (0,2) size 600x13
+            RenderTableCell {TD} at (2,2) size 348x13 [r=0 c=0 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 25x11
+                text run at (1,1) width 25: "#####"
+            RenderTableCell {TD} at (351,2) size 155x13 [r=0 c=1 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 10x11
+                text run at (1,1) width 10: "##"
+            RenderTableCell {TD} at (507,2) size 92x13 [r=0 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+          RenderTableRow {TR} at (0,17) size 600x13
+            RenderTableCell {TD} at (2,17) size 597x13 [r=1 c=0 rs=1 cs=3]
+              RenderText {#text} at (1,1) size 65x11
+                text run at (1,1) width 65: "#############"
+          RenderTableRow {TR} at (0,32) size 600x13
+            RenderTableCell {TD} at (2,32) size 504x13 [r=2 c=0 rs=1 cs=2]
+              RenderText {#text} at (1,1) size 35x11
+                text run at (1,1) width 35: "#######"
+            RenderTableCell {TD} at (507,32) size 92x13 [r=2 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+      RenderTable {TABLE} at (0,188) size 600x47
+        RenderTableSection {TBODY} at (0,0) size 600x47
+          RenderTableRow {TR} at (0,2) size 600x13
+            RenderTableCell {TD} at (2,2) size 348x13 [r=0 c=0 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 25x11
+                text run at (1,1) width 25: "#####"
+            RenderTableCell {TD} at (351,2) size 155x13 [r=0 c=1 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 10x11
+                text run at (1,1) width 10: "##"
+            RenderTableCell {TD} at (507,2) size 92x13 [r=0 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+          RenderTableRow {TR} at (0,17) size 600x13
+            RenderTableCell {TD} at (2,17) size 597x13 [r=1 c=0 rs=1 cs=3]
+              RenderText {#text} at (1,1) size 65x11
+                text run at (1,1) width 65: "#############"
+          RenderTableRow {TR} at (0,32) size 600x13
+            RenderTableCell {TD} at (2,32) size 348x13 [r=2 c=0 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+            RenderTableCell {TD} at (351,32) size 248x13 [r=2 c=1 rs=1 cs=2]
+              RenderText {#text} at (1,1) size 15x11
+                text run at (1,1) width 15: "###"
+      RenderTable {TABLE} at (0,235) size 600x119
+        RenderTableSection {TBODY} at (0,0) size 600x119
+          RenderTableRow {TR} at (0,20) size 600x13
+            RenderTableCell {TD} at (20,20) size 286x13 [r=0 c=0 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 15x11
+                text run at (1,1) width 15: "###"
+            RenderTableCell {TD} at (325,20) size 118x13 [r=0 c=1 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+            RenderTableCell {TD} at (462,20) size 119x13 [r=0 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+          RenderTableRow {TR} at (0,53) size 600x13
+            RenderTableCell {TD} at (20,53) size 561x13 [r=1 c=0 rs=1 cs=3]
+              RenderText {#text} at (1,1) size 15x11
+                text run at (1,1) width 15: "###"
+          RenderTableRow {TR} at (0,86) size 600x13
+            RenderTableCell {TD} at (20,86) size 423x13 [r=2 c=0 rs=1 cs=2]
+              RenderText {#text} at (1,1) size 15x11
+                text run at (1,1) width 15: "###"
+            RenderTableCell {TD} at (462,86) size 119x13 [r=2 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"

Added: trunk/LayoutTests/platform/wpe/fast/layoutformattingcontext/table-fixed-width-with-max-distribution-expected.txt (0 => 261801)


--- trunk/LayoutTests/platform/wpe/fast/layoutformattingcontext/table-fixed-width-with-max-distribution-expected.txt	                        (rev 0)
+++ trunk/LayoutTests/platform/wpe/fast/layoutformattingcontext/table-fixed-width-with-max-distribution-expected.txt	2020-05-18 08:14:47 UTC (rev 261801)
@@ -0,0 +1,30 @@
+layer at (0,0) size 800x600
+  RenderView at (0,0) size 800x600
+layer at (0,0) size 800x257
+  RenderBlock {HTML} at (0,0) size 800x257
+    RenderBody {BODY} at (8,8) size 784x241
+      RenderTable {TABLE} at (0,0) size 157x126 [border: (10px solid #008000)]
+        RenderTableSection {TBODY} at (40,40) size 77x46
+          RenderTableRow {TR} at (0,0) size 77x24
+            RenderTableCell {TD} at (0,11) size 33x2 [r=0 c=0 rs=1 cs=1]
+            RenderTableCell {TD} at (32,0) size 46x24 [r=0 c=1 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 24x22
+                text run at (1,1) width 24: "iiiiiiii"
+                text run at (1,12) width 24: "iiiiiiii"
+          RenderTableRow {TR} at (0,24) size 77x22
+            RenderTableCell {TD} at (0,34) size 33x2 [r=1 c=0 rs=1 cs=1]
+            RenderTableCell {TD} at (32,28) size 46x14 [r=1 c=1 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 24x12
+                text run at (1,2) width 24: "iiiiiiii"
+      RenderTable {TABLE} at (0,126) size 157x115 [border: (10px solid #008000)]
+        RenderTableSection {TBODY} at (40,40) size 77x35
+          RenderTableRow {TR} at (0,0) size 77x13
+            RenderTableCell {TD} at (0,5) size 24x3 [r=0 c=0 rs=1 cs=1]
+            RenderTableCell {TD} at (24,0) size 53x13 [r=0 c=1 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 51x11
+                text run at (1,1) width 51: "iiiiiiii iiiiiiii"
+          RenderTableRow {TR} at (0,13) size 77x22
+            RenderTableCell {TD} at (0,23) size 24x2 [r=1 c=0 rs=1 cs=1]
+            RenderTableCell {TD} at (24,17) size 53x14 [r=1 c=1 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 24x12
+                text run at (1,2) width 24: "iiiiiiii"

Added: trunk/LayoutTests/platform/wpe/fast/layoutformattingcontext/table-flex-width-border-collapse-expected.txt (0 => 261801)


--- trunk/LayoutTests/platform/wpe/fast/layoutformattingcontext/table-flex-width-border-collapse-expected.txt	                        (rev 0)
+++ trunk/LayoutTests/platform/wpe/fast/layoutformattingcontext/table-flex-width-border-collapse-expected.txt	2020-05-18 08:14:47 UTC (rev 261801)
@@ -0,0 +1,299 @@
+layer at (0,0) size 800x600
+  RenderView at (0,0) size 800x600
+layer at (0,0) size 800x484
+  RenderBlock {HTML} at (0,0) size 800x484
+    RenderBody {BODY} at (8,8) size 784x468
+      RenderTable {TABLE} at (0,0) size 51x39
+        RenderTableSection {TBODY} at (0,0) size 51x39
+          RenderTableRow {TR} at (0,0) size 51x13
+            RenderTableCell {TD} at (0,0) size 17x13 [r=0 c=0 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 15x11
+                text run at (1,1) width 15: "###"
+            RenderTableCell {TD} at (17,0) size 17x13 [r=0 c=1 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+            RenderTableCell {TD} at (34,0) size 17x13 [r=0 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+          RenderTableRow {TR} at (0,13) size 51x13
+            RenderTableCell {TD} at (0,13) size 17x13 [r=1 c=0 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+            RenderTableCell {TD} at (17,13) size 17x13 [r=1 c=1 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+            RenderTableCell {TD} at (34,13) size 17x13 [r=1 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 15x11
+                text run at (1,1) width 15: "###"
+          RenderTableRow {TR} at (0,26) size 51x13
+            RenderTableCell {TD} at (0,26) size 17x13 [r=2 c=0 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+            RenderTableCell {TD} at (17,26) size 17x13 [r=2 c=1 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 15x11
+                text run at (1,1) width 15: "###"
+            RenderTableCell {TD} at (34,26) size 17x13 [r=2 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+      RenderTable {TABLE} at (0,39) size 21x39
+        RenderTableSection {TBODY} at (0,0) size 21x39
+          RenderTableRow {TR} at (0,0) size 21x13
+            RenderTableCell {TD} at (0,0) size 7x13 [r=0 c=0 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+            RenderTableCell {TD} at (7,0) size 7x13 [r=0 c=1 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+            RenderTableCell {TD} at (14,0) size 7x13 [r=0 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+          RenderTableRow {TR} at (0,13) size 21x13
+            RenderTableCell {TD} at (0,13) size 21x13 [r=1 c=0 rs=1 cs=3]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+          RenderTableRow {TR} at (0,26) size 21x13
+            RenderTableCell {TD} at (0,26) size 14x13 [r=2 c=0 rs=1 cs=2]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+            RenderTableCell {TD} at (14,26) size 7x13 [r=2 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+      RenderTable {TABLE} at (0,78) size 36x39
+        RenderTableSection {TBODY} at (0,0) size 36x39
+          RenderTableRow {TR} at (0,0) size 36x13
+            RenderTableCell {TD} at (0,0) size 17x13 [r=0 c=0 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 15x11
+                text run at (1,1) width 15: "###"
+            RenderTableCell {TD} at (17,0) size 12x13 [r=0 c=1 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 10x11
+                text run at (1,1) width 10: "##"
+            RenderTableCell {TD} at (29,0) size 7x13 [r=0 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+          RenderTableRow {TR} at (0,13) size 36x13
+            RenderTableCell {TD} at (0,13) size 36x13 [r=1 c=0 rs=1 cs=3]
+              RenderText {#text} at (1,1) size 30x11
+                text run at (1,1) width 30: "######"
+          RenderTableRow {TR} at (0,26) size 36x13
+            RenderTableCell {TD} at (0,26) size 29x13 [r=2 c=0 rs=1 cs=2]
+              RenderText {#text} at (1,1) size 25x11
+                text run at (1,1) width 25: "#####"
+            RenderTableCell {TD} at (29,26) size 7x13 [r=2 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+      RenderTable {TABLE} at (0,117) size 67x39
+        RenderTableSection {TBODY} at (0,0) size 67x39
+          RenderTableRow {TR} at (0,0) size 67x13
+            RenderTableCell {TD} at (0,0) size 40x13 [r=0 c=0 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 25x11
+                text run at (1,1) width 25: "#####"
+            RenderTableCell {TD} at (39,0) size 18x13 [r=0 c=1 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 10x11
+                text run at (1,1) width 10: "##"
+            RenderTableCell {TD} at (56,0) size 12x13 [r=0 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+          RenderTableRow {TR} at (0,13) size 67x13
+            RenderTableCell {TD} at (0,13) size 68x13 [r=1 c=0 rs=1 cs=3]
+              RenderText {#text} at (1,1) size 65x11
+                text run at (1,1) width 65: "#############"
+          RenderTableRow {TR} at (0,26) size 67x13
+            RenderTableCell {TD} at (0,26) size 57x13 [r=2 c=0 rs=1 cs=2]
+              RenderText {#text} at (1,1) size 35x11
+                text run at (1,1) width 35: "#######"
+            RenderTableCell {TD} at (56,26) size 12x13 [r=2 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+      RenderTable {TABLE} at (0,156) size 67x39
+        RenderTableSection {TBODY} at (0,0) size 67x39
+          RenderTableRow {TR} at (0,0) size 67x13
+            RenderTableCell {TD} at (0,0) size 40x13 [r=0 c=0 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 25x11
+                text run at (1,1) width 25: "#####"
+            RenderTableCell {TD} at (39,0) size 18x13 [r=0 c=1 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 10x11
+                text run at (1,1) width 10: "##"
+            RenderTableCell {TD} at (56,0) size 12x13 [r=0 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+          RenderTableRow {TR} at (0,13) size 67x13
+            RenderTableCell {TD} at (0,13) size 68x13 [r=1 c=0 rs=1 cs=3]
+              RenderText {#text} at (1,1) size 65x11
+                text run at (1,1) width 65: "#############"
+          RenderTableRow {TR} at (0,26) size 67x13
+            RenderTableCell {TD} at (0,26) size 40x13 [r=2 c=0 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+            RenderTableCell {TD} at (39,26) size 29x13 [r=2 c=1 rs=1 cs=2]
+              RenderText {#text} at (1,1) size 15x11
+                text run at (1,1) width 15: "###"
+      RenderTable {TABLE} at (0,195) size 31x39
+        RenderTableSection {TBODY} at (0,0) size 31x39
+          RenderTableRow {TR} at (0,0) size 31x13
+            RenderTableCell {TD} at (0,0) size 17x13 [r=0 c=0 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 15x11
+                text run at (1,1) width 15: "###"
+            RenderTableCell {TD} at (17,0) size 7x13 [r=0 c=1 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+            RenderTableCell {TD} at (24,0) size 7x13 [r=0 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+          RenderTableRow {TR} at (0,13) size 31x13
+            RenderTableCell {TD} at (0,13) size 31x13 [r=1 c=0 rs=1 cs=3]
+              RenderText {#text} at (1,1) size 15x11
+                text run at (1,1) width 15: "###"
+          RenderTableRow {TR} at (0,26) size 31x13
+            RenderTableCell {TD} at (0,26) size 24x13 [r=2 c=0 rs=1 cs=2]
+              RenderText {#text} at (1,1) size 15x11
+                text run at (1,1) width 15: "###"
+            RenderTableCell {TD} at (24,26) size 7x13 [r=2 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+      RenderTable {TABLE} at (0,234) size 600x39
+        RenderTableSection {TBODY} at (0,0) size 600x39
+          RenderTableRow {TR} at (0,0) size 600x13
+            RenderTableCell {TD} at (0,0) size 200x13 [r=0 c=0 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 15x11
+                text run at (1,1) width 15: "###"
+            RenderTableCell {TD} at (200,0) size 200x13 [r=0 c=1 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+            RenderTableCell {TD} at (400,0) size 200x13 [r=0 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+          RenderTableRow {TR} at (0,13) size 600x13
+            RenderTableCell {TD} at (0,13) size 200x13 [r=1 c=0 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+            RenderTableCell {TD} at (200,13) size 200x13 [r=1 c=1 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+            RenderTableCell {TD} at (400,13) size 200x13 [r=1 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 15x11
+                text run at (1,1) width 15: "###"
+          RenderTableRow {TR} at (0,26) size 600x13
+            RenderTableCell {TD} at (0,26) size 200x13 [r=2 c=0 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+            RenderTableCell {TD} at (200,26) size 200x13 [r=2 c=1 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 15x11
+                text run at (1,1) width 15: "###"
+            RenderTableCell {TD} at (400,26) size 200x13 [r=2 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+      RenderTable {TABLE} at (0,273) size 600x39
+        RenderTableSection {TBODY} at (0,0) size 600x39
+          RenderTableRow {TR} at (0,0) size 600x13
+            RenderTableCell {TD} at (0,0) size 200x13 [r=0 c=0 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+            RenderTableCell {TD} at (200,0) size 200x13 [r=0 c=1 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+            RenderTableCell {TD} at (400,0) size 200x13 [r=0 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+          RenderTableRow {TR} at (0,13) size 600x13
+            RenderTableCell {TD} at (0,13) size 600x13 [r=1 c=0 rs=1 cs=3]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+          RenderTableRow {TR} at (0,26) size 600x13
+            RenderTableCell {TD} at (0,26) size 400x13 [r=2 c=0 rs=1 cs=2]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+            RenderTableCell {TD} at (400,26) size 200x13 [r=2 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+      RenderTable {TABLE} at (0,312) size 600x39
+        RenderTableSection {TBODY} at (0,0) size 600x39
+          RenderTableRow {TR} at (0,0) size 600x13
+            RenderTableCell {TD} at (0,0) size 284x13 [r=0 c=0 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 15x11
+                text run at (1,1) width 15: "###"
+            RenderTableCell {TD} at (283,0) size 201x13 [r=0 c=1 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 10x11
+                text run at (1,1) width 10: "##"
+            RenderTableCell {TD} at (483,0) size 118x13 [r=0 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+          RenderTableRow {TR} at (0,13) size 600x13
+            RenderTableCell {TD} at (0,13) size 601x13 [r=1 c=0 rs=1 cs=3]
+              RenderText {#text} at (1,1) size 30x11
+                text run at (1,1) width 30: "######"
+          RenderTableRow {TR} at (0,26) size 600x13
+            RenderTableCell {TD} at (0,26) size 484x13 [r=2 c=0 rs=1 cs=2]
+              RenderText {#text} at (1,1) size 25x11
+                text run at (1,1) width 25: "#####"
+            RenderTableCell {TD} at (483,26) size 118x13 [r=2 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+      RenderTable {TABLE} at (0,351) size 600x39
+        RenderTableSection {TBODY} at (0,0) size 600x39
+          RenderTableRow {TR} at (0,0) size 600x13
+            RenderTableCell {TD} at (0,0) size 353x13 [r=0 c=0 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 25x11
+                text run at (1,1) width 25: "#####"
+            RenderTableCell {TD} at (352,0) size 157x13 [r=0 c=1 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 10x11
+                text run at (1,1) width 10: "##"
+            RenderTableCell {TD} at (508,0) size 93x13 [r=0 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+          RenderTableRow {TR} at (0,13) size 600x13
+            RenderTableCell {TD} at (0,13) size 601x13 [r=1 c=0 rs=1 cs=3]
+              RenderText {#text} at (1,1) size 65x11
+                text run at (1,1) width 65: "#############"
+          RenderTableRow {TR} at (0,26) size 600x13
+            RenderTableCell {TD} at (0,26) size 509x13 [r=2 c=0 rs=1 cs=2]
+              RenderText {#text} at (1,1) size 35x11
+                text run at (1,1) width 35: "#######"
+            RenderTableCell {TD} at (508,26) size 93x13 [r=2 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+      RenderTable {TABLE} at (0,390) size 600x39
+        RenderTableSection {TBODY} at (0,0) size 600x39
+          RenderTableRow {TR} at (0,0) size 600x13
+            RenderTableCell {TD} at (0,0) size 353x13 [r=0 c=0 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 25x11
+                text run at (1,1) width 25: "#####"
+            RenderTableCell {TD} at (352,0) size 157x13 [r=0 c=1 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 10x11
+                text run at (1,1) width 10: "##"
+            RenderTableCell {TD} at (508,0) size 93x13 [r=0 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+          RenderTableRow {TR} at (0,13) size 600x13
+            RenderTableCell {TD} at (0,13) size 601x13 [r=1 c=0 rs=1 cs=3]
+              RenderText {#text} at (1,1) size 65x11
+                text run at (1,1) width 65: "#############"
+          RenderTableRow {TR} at (0,26) size 600x13
+            RenderTableCell {TD} at (0,26) size 353x13 [r=2 c=0 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+            RenderTableCell {TD} at (352,26) size 249x13 [r=2 c=1 rs=1 cs=2]
+              RenderText {#text} at (1,1) size 15x11
+                text run at (1,1) width 15: "###"
+      RenderTable {TABLE} at (0,429) size 600x39
+        RenderTableSection {TBODY} at (0,0) size 600x39
+          RenderTableRow {TR} at (0,0) size 600x13
+            RenderTableCell {TD} at (0,0) size 330x13 [r=0 c=0 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 15x11
+                text run at (1,1) width 15: "###"
+            RenderTableCell {TD} at (329,0) size 136x13 [r=0 c=1 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+            RenderTableCell {TD} at (464,0) size 137x13 [r=0 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+          RenderTableRow {TR} at (0,13) size 600x13
+            RenderTableCell {TD} at (0,13) size 601x13 [r=1 c=0 rs=1 cs=3]
+              RenderText {#text} at (1,1) size 15x11
+                text run at (1,1) width 15: "###"
+          RenderTableRow {TR} at (0,26) size 600x13
+            RenderTableCell {TD} at (0,26) size 465x13 [r=2 c=0 rs=1 cs=2]
+              RenderText {#text} at (1,1) size 15x11
+                text run at (1,1) width 15: "###"
+            RenderTableCell {TD} at (464,26) size 137x13 [r=2 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"

Added: trunk/LayoutTests/platform/wpe/fast/layoutformattingcontext/table-flex-width-colspans-expected.txt (0 => 261801)


--- trunk/LayoutTests/platform/wpe/fast/layoutformattingcontext/table-flex-width-colspans-expected.txt	                        (rev 0)
+++ trunk/LayoutTests/platform/wpe/fast/layoutformattingcontext/table-flex-width-colspans-expected.txt	2020-05-18 08:14:47 UTC (rev 261801)
@@ -0,0 +1,152 @@
+layer at (0,0) size 800x600
+  RenderView at (0,0) size 800x600
+layer at (0,0) size 800x370
+  RenderBlock {HTML} at (0,0) size 800x370
+    RenderBody {BODY} at (8,8) size 784x354
+      RenderTable {TABLE} at (0,0) size 59x47
+        RenderTableSection {TBODY} at (0,0) size 59x47
+          RenderTableRow {TR} at (0,2) size 59x13
+            RenderTableCell {TD} at (2,2) size 17x13 [r=0 c=0 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 15x11
+                text run at (1,1) width 15: "###"
+            RenderTableCell {TD} at (21,2) size 17x13 [r=0 c=1 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+            RenderTableCell {TD} at (40,2) size 17x13 [r=0 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+          RenderTableRow {TR} at (0,17) size 59x13
+            RenderTableCell {TD} at (2,17) size 17x13 [r=1 c=0 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+            RenderTableCell {TD} at (21,17) size 17x13 [r=1 c=1 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+            RenderTableCell {TD} at (40,17) size 17x13 [r=1 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 15x11
+                text run at (1,1) width 15: "###"
+          RenderTableRow {TR} at (0,32) size 59x13
+            RenderTableCell {TD} at (2,32) size 17x13 [r=2 c=0 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+            RenderTableCell {TD} at (21,32) size 17x13 [r=2 c=1 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 15x11
+                text run at (1,1) width 15: "###"
+            RenderTableCell {TD} at (40,32) size 17x13 [r=2 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+      RenderTable {TABLE} at (0,47) size 29x47
+        RenderTableSection {TBODY} at (0,0) size 29x47
+          RenderTableRow {TR} at (0,2) size 29x13
+            RenderTableCell {TD} at (2,2) size 7x13 [r=0 c=0 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+            RenderTableCell {TD} at (11,2) size 7x13 [r=0 c=1 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+            RenderTableCell {TD} at (20,2) size 7x13 [r=0 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+          RenderTableRow {TR} at (0,17) size 29x13
+            RenderTableCell {TD} at (2,17) size 25x13 [r=1 c=0 rs=1 cs=3]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+          RenderTableRow {TR} at (0,32) size 29x13
+            RenderTableCell {TD} at (2,32) size 16x13 [r=2 c=0 rs=1 cs=2]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+            RenderTableCell {TD} at (20,32) size 7x13 [r=2 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+      RenderTable {TABLE} at (0,94) size 44x47
+        RenderTableSection {TBODY} at (0,0) size 44x47
+          RenderTableRow {TR} at (0,2) size 44x13
+            RenderTableCell {TD} at (2,2) size 17x13 [r=0 c=0 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 15x11
+                text run at (1,1) width 15: "###"
+            RenderTableCell {TD} at (21,2) size 12x13 [r=0 c=1 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 10x11
+                text run at (1,1) width 10: "##"
+            RenderTableCell {TD} at (35,2) size 7x13 [r=0 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+          RenderTableRow {TR} at (0,17) size 44x13
+            RenderTableCell {TD} at (2,17) size 40x13 [r=1 c=0 rs=1 cs=3]
+              RenderText {#text} at (1,1) size 30x11
+                text run at (1,1) width 30: "######"
+          RenderTableRow {TR} at (0,32) size 44x13
+            RenderTableCell {TD} at (2,32) size 31x13 [r=2 c=0 rs=1 cs=2]
+              RenderText {#text} at (1,1) size 25x11
+                text run at (1,1) width 25: "#####"
+            RenderTableCell {TD} at (35,32) size 7x13 [r=2 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+      RenderTable {TABLE} at (0,141) size 71x47
+        RenderTableSection {TBODY} at (0,0) size 71x47
+          RenderTableRow {TR} at (0,2) size 71x13
+            RenderTableCell {TD} at (2,2) size 37x13 [r=0 c=0 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 25x11
+                text run at (1,1) width 25: "#####"
+            RenderTableCell {TD} at (40,2) size 18x13 [r=0 c=1 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 10x11
+                text run at (1,1) width 10: "##"
+            RenderTableCell {TD} at (59,2) size 11x13 [r=0 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+          RenderTableRow {TR} at (0,17) size 71x13
+            RenderTableCell {TD} at (2,17) size 68x13 [r=1 c=0 rs=1 cs=3]
+              RenderText {#text} at (1,1) size 65x11
+                text run at (1,1) width 65: "#############"
+          RenderTableRow {TR} at (0,32) size 71x13
+            RenderTableCell {TD} at (2,32) size 56x13 [r=2 c=0 rs=1 cs=2]
+              RenderText {#text} at (1,1) size 35x11
+                text run at (1,1) width 35: "#######"
+            RenderTableCell {TD} at (59,32) size 11x13 [r=2 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+      RenderTable {TABLE} at (0,188) size 71x47
+        RenderTableSection {TBODY} at (0,0) size 71x47
+          RenderTableRow {TR} at (0,2) size 71x13
+            RenderTableCell {TD} at (2,2) size 37x13 [r=0 c=0 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 25x11
+                text run at (1,1) width 25: "#####"
+            RenderTableCell {TD} at (40,2) size 18x13 [r=0 c=1 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 10x11
+                text run at (1,1) width 10: "##"
+            RenderTableCell {TD} at (59,2) size 11x13 [r=0 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+          RenderTableRow {TR} at (0,17) size 71x13
+            RenderTableCell {TD} at (2,17) size 68x13 [r=1 c=0 rs=1 cs=3]
+              RenderText {#text} at (1,1) size 65x11
+                text run at (1,1) width 65: "#############"
+          RenderTableRow {TR} at (0,32) size 71x13
+            RenderTableCell {TD} at (2,32) size 37x13 [r=2 c=0 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+            RenderTableCell {TD} at (40,32) size 30x13 [r=2 c=1 rs=1 cs=2]
+              RenderText {#text} at (1,1) size 15x11
+                text run at (1,1) width 15: "###"
+      RenderTable {TABLE} at (0,235) size 111x119
+        RenderTableSection {TBODY} at (0,0) size 111x119
+          RenderTableRow {TR} at (0,20) size 111x13
+            RenderTableCell {TD} at (20,20) size 17x13 [r=0 c=0 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 15x11
+                text run at (1,1) width 15: "###"
+            RenderTableCell {TD} at (57,20) size 7x13 [r=0 c=1 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+            RenderTableCell {TD} at (84,20) size 7x13 [r=0 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"
+          RenderTableRow {TR} at (0,53) size 111x13
+            RenderTableCell {TD} at (20,53) size 71x13 [r=1 c=0 rs=1 cs=3]
+              RenderText {#text} at (1,1) size 15x11
+                text run at (1,1) width 15: "###"
+          RenderTableRow {TR} at (0,86) size 111x13
+            RenderTableCell {TD} at (20,86) size 44x13 [r=2 c=0 rs=1 cs=2]
+              RenderText {#text} at (1,1) size 15x11
+                text run at (1,1) width 15: "###"
+            RenderTableCell {TD} at (84,86) size 7x13 [r=2 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"

Added: trunk/LayoutTests/platform/wpe/fast/layoutformattingcontext/table-simple-with-fixed-widht-and-inline-content-expected.txt (0 => 261801)


--- trunk/LayoutTests/platform/wpe/fast/layoutformattingcontext/table-simple-with-fixed-widht-and-inline-content-expected.txt	                        (rev 0)
+++ trunk/LayoutTests/platform/wpe/fast/layoutformattingcontext/table-simple-with-fixed-widht-and-inline-content-expected.txt	2020-05-18 08:14:47 UTC (rev 261801)
@@ -0,0 +1,17 @@
+layer at (0,0) size 800x600
+  RenderView at (0,0) size 800x600
+layer at (0,0) size 800x209
+  RenderBlock {HTML} at (0,0) size 800x209
+    RenderBody {BODY} at (8,8) size 784x193
+      RenderTable {TABLE} at (0,0) size 240x193 [border: (10px solid #008000)]
+        RenderTableSection {TBODY} at (40,40) size 160x113
+          RenderTableRow {TR} at (0,0) size 160x62
+            RenderTableCell {TD} at (0,36) size 80x41 [border: (10px solid #FF0000)] [r=0 c=0 rs=2 cs=1]
+            RenderTableCell {TD} at (80,0) size 80x62 [border: (10px solid #FF0000)] [r=0 c=1 rs=1 cs=1]
+              RenderText {#text} at (20,20) size 39x22
+                text run at (20,20) width 39: "fooo fooo"
+                text run at (20,31) width 18: "fooo"
+          RenderTableRow {TR} at (0,62) size 160x51
+            RenderTableCell {TD} at (80,62) size 80x51 [border: (10px solid #FF0000)] [r=1 c=1 rs=1 cs=1]
+              RenderText {#text} at (20,20) size 13x11
+                text run at (20,20) width 13: "foo"

Added: trunk/LayoutTests/platform/wpe/fast/layoutformattingcontext/table-with-column-spanner-first-row-expected.txt (0 => 261801)


--- trunk/LayoutTests/platform/wpe/fast/layoutformattingcontext/table-with-column-spanner-first-row-expected.txt	                        (rev 0)
+++ trunk/LayoutTests/platform/wpe/fast/layoutformattingcontext/table-with-column-spanner-first-row-expected.txt	2020-05-18 08:14:47 UTC (rev 261801)
@@ -0,0 +1,28 @@
+layer at (0,0) size 800x600
+  RenderView at (0,0) size 800x600
+layer at (0,0) size 800x63
+  RenderBlock {HTML} at (0,0) size 800x63
+    RenderBody {BODY} at (8,8) size 784x47
+      RenderTable {TABLE} at (0,0) size 600x47
+        RenderTableSection {TBODY} at (0,0) size 600x47
+          RenderTableRow {TR} at (0,2) size 600x13
+            RenderTableCell {TD} at (2,2) size 597x13 [r=0 c=0 rs=1 cs=3]
+              RenderText {#text} at (1,1) size 65x11
+                text run at (1,1) width 65: "#############"
+          RenderTableRow {TR} at (0,17) size 600x13
+            RenderTableCell {TD} at (2,17) size 455x13 [r=1 c=0 rs=1 cs=2]
+              RenderText {#text} at (1,1) size 30x11
+                text run at (1,1) width 30: "######"
+            RenderTableCell {TD} at (458,17) size 141x13 [r=1 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 10x11
+                text run at (1,1) width 10: "##"
+          RenderTableRow {TR} at (0,32) size 600x13
+            RenderTableCell {TD} at (2,32) size 314x13 [r=2 c=0 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 25x11
+                text run at (1,1) width 25: "#####"
+            RenderTableCell {TD} at (317,32) size 140x13 [r=2 c=1 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 10x11
+                text run at (1,1) width 10: "##"
+            RenderTableCell {TD} at (458,32) size 141x13 [r=2 c=2 rs=1 cs=1]
+              RenderText {#text} at (1,1) size 5x11
+                text run at (1,1) width 5: "#"

Added: trunk/LayoutTests/platform/wpe/webgl/1.0.3/conformance/context/methods-expected.txt (0 => 261801)


--- trunk/LayoutTests/platform/wpe/webgl/1.0.3/conformance/context/methods-expected.txt	                        (rev 0)
+++ trunk/LayoutTests/platform/wpe/webgl/1.0.3/conformance/context/methods-expected.txt	2020-05-18 08:14:47 UTC (rev 261801)
@@ -0,0 +1,10 @@
+This test runs the WebGL Test listed below in an iframe and reports PASS or FAIL.
+
+Test: ../../resources/webgl_test_files/conformance/context/methods.html
+[ 1: PASS ] All WebGL methods found.
+[ 2: FAIL ] Also found the following extra methods:
+[ 3: FAIL ] makeXRCompatible
+[ 4: FAIL ] releaseShaderCompiler
+[ 5: PASS ] successfullyParsed is true
+[ FAIL ] 3 failures reported
+
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to