Changeset 185652 in webkit


Ignore:
Timestamp:
Jun 17, 2015 9:13:49 AM (9 years ago)
Author:
jfernandez@igalia.com
Message:

[CSS Grid Layout] Performance tests are using the old syntax
https://bugs.webkit.org/show_bug.cgi?id=146061

Reviewed by Sergio Villar Senin.

Adapted tests to the new grid tracks definition syntax.

  • Layout/auto-grid-lots-of-data.html:
  • Layout/fixed-grid-lots-of-data.html:
Location:
trunk/PerformanceTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/PerformanceTests/ChangeLog

    r185425 r185652  
     12015-06-17  Javier Fernandez  <jfernandez@igalia.com>
     2
     3        [CSS Grid Layout] Performance tests are using the old syntax
     4        https://bugs.webkit.org/show_bug.cgi?id=146061
     5
     6        Reviewed by Sergio Villar Senin.
     7
     8        Adapted tests to the new grid tracks definition syntax.
     9
     10        * Layout/auto-grid-lots-of-data.html:
     11        * Layout/fixed-grid-lots-of-data.html:
     12
    1132015-06-08  Filip Pizlo  <fpizlo@apple.com>
    214
  • trunk/PerformanceTests/Layout/auto-grid-lots-of-data.html

    r168416 r185652  
    1010body {
    1111    display: -webkit-grid;
    12     -webkit-grid-definition-rows: repeat(100, auto);
    13     -webkit-grid-definition-columns: repeat(20, auto);
     12    -webkit-grid-template-rows: repeat(100, auto);
     13    -webkit-grid-template-columns: repeat(20, auto);
    1414}
    1515
  • trunk/PerformanceTests/Layout/fixed-grid-lots-of-data.html

    r168416 r185652  
    1010body {
    1111    display: -webkit-grid;
    12     -webkit-grid-definition-rows: repeat(100, 200px);
    13     -webkit-grid-definition-columns: repeat(20, 200px);
     12    -webkit-grid-template-rows: repeat(100, 200px);
     13    -webkit-grid-template-columns: repeat(20, 200px);
    1414}
    1515
Note: See TracChangeset for help on using the changeset viewer.