[webkit-changes] [286108] trunk/PerformanceTests

2021-11-21 Thread cathiechen
Title: [286108] trunk/PerformanceTests








Revision 286108
Author cathiec...@igalia.com
Date 2021-11-21 19:06:33 -0800 (Sun, 21 Nov 2021)


Log Message
[Performance test][css-contain] Add case to test contain: layout inside a complex document
https://bugs.webkit.org/show_bug.cgi?id=232883

Reviewed by Rob Buis.

This case test the performance of changing the content of a layout containment which is
inside a complex document.

* Layout/css-contain-layout-size-inside-complex-document.html: Added.

Modified Paths

trunk/PerformanceTests/ChangeLog


Added Paths

trunk/PerformanceTests/Layout/css-contain-layout-size-inside-complex-document.html




Diff

Modified: trunk/PerformanceTests/ChangeLog (286107 => 286108)

--- trunk/PerformanceTests/ChangeLog	2021-11-21 23:58:55 UTC (rev 286107)
+++ trunk/PerformanceTests/ChangeLog	2021-11-22 03:06:33 UTC (rev 286108)
@@ -1,3 +1,15 @@
+2021-11-21  Cathie Chen  
+
+[Performance test][css-contain] Add case to test contain: layout inside a complex document
+https://bugs.webkit.org/show_bug.cgi?id=232883
+
+Reviewed by Rob Buis.
+
+This case test the performance of changing the content of a layout containment which is
+inside a complex document.
+
+* Layout/css-contain-layout-size-inside-complex-document.html: Added.
+
 2021-11-19  Alan Bujtas  
 
 Add layout performance test for simple bidi content


Added: trunk/PerformanceTests/Layout/css-contain-layout-size-inside-complex-document.html (0 => 286108)

--- trunk/PerformanceTests/Layout/css-contain-layout-size-inside-complex-document.html	(rev 0)
+++ trunk/PerformanceTests/Layout/css-contain-layout-size-inside-complex-document.html	2021-11-22 03:06:33 UTC (rev 286108)
@@ -0,0 +1,85 @@
+
+Performance test changing "contain: layout size" box inside a document with complicated and expensive layout
+
+#wrapper {
+display: flex;
+flex-direction: column;
+}
+.row {
+display: flex;
+}
+#target {   
+contain: layout size;
+}
+
+
+
+
+