Changeset 166089 in webkit


Ignore:
Timestamp:
Mar 21, 2014 12:10:00 PM (10 years ago)
Author:
cavalcantii@gmail.com
Message:

Refactor css3/filters/huge-region test
https://bugs.webkit.org/show_bug.cgi?id=129553

Reviewed by Dirk Schulze.

This patch refactors the huge-region to become a big enough
element to *not* be rendered. Plus, adds another test using a huge
blur filter kernel size that will trigger clamping the value to
maximum accepted value (500px).

  • TestExpectations:
  • css3/filters/huge-blur-value-expected.txt: Added.
  • css3/filters/huge-blur-value.html: Copied from LayoutTests/css3/filters/huge-region.html.
  • css3/filters/huge-region.html:
Location:
trunk/LayoutTests
Files:
1 added
3 edited
1 copied

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r166087 r166089  
     12014-03-21  Adenilson Cavalcanti  <cavalcantii@gmail.com>
     2
     3        Refactor css3/filters/huge-region test
     4        https://bugs.webkit.org/show_bug.cgi?id=129553
     5
     6        Reviewed by Dirk Schulze.
     7
     8        This patch refactors the huge-region to become a big enough
     9        element to *not* be rendered. Plus, adds another test using a huge
     10        blur filter kernel size that will trigger clamping the value to
     11        maximum accepted value (500px).
     12
     13        * TestExpectations:
     14        * css3/filters/huge-blur-value-expected.txt: Added.
     15        * css3/filters/huge-blur-value.html: Copied from LayoutTests/css3/filters/huge-region.html.
     16        * css3/filters/huge-region.html:
     17
    1182014-03-21  James Craig  <jcraig@apple.com>
    219
  • trunk/LayoutTests/TestExpectations

    r166060 r166089  
    88# pending functional patch and per-port verification
    99webkit.org/b/109954 css3/line-break [ Skip ]
    10 
    11 # pending refactor of this test
    12 webkit.org/b/129553 css3/filters/huge-region.html [ Skip ]
    1310
    1411# pending implementation completion and feature enabling
  • trunk/LayoutTests/css3/filters/huge-blur-value.html

    r166088 r166089  
    66      width: 50px;
    77      height: 50px;
    8       padding-bottom: 65536%;
    98      -webkit-filter: blur(2147483648px);
    10         } 
     9        }
    1110  </style>
    1211  <script>
     
    1615</head>
    1716<body>
    18   <div class="big">This element is too big to filter.</div>
     17  <div class="big">So blurry...</div>
    1918</body>
    2019</html>
  • trunk/LayoutTests/css3/filters/huge-region.html

    r119990 r166089  
    44  <style type="text/css">
    55    .big {
    6       width: 50px;
    7       height: 50px;
    8       padding-bottom: 65536%;
    9       -webkit-filter: blur(2147483648px);
    10         }
     6      width: 4096px;
     7      height: 4096px;
     8      -webkit-filter: blur(3px);
     9        }
    1110  </style>
    1211  <script>
Note: See TracChangeset for help on using the changeset viewer.