Changeset 169232 in webkit
- Timestamp:
- May 22, 2014, 5:39:36 PM (11 years ago)
- Location:
- trunk/LayoutTests
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r169229 r169232 1 2014-05-22 Simon Fraser <simon.fraser@apple.com> 2 3 Fix the compositing/transitions/transform-on-large-layer.html test 4 https://bugs.webkit.org/show_bug.cgi?id=133195 5 6 Reviewed by Dean Jackson. 7 8 This test used window resize when it doesn't need to and was flakey. 9 10 * compositing/transitions/transform-on-large-layer.html: 11 * platform/efl/TestExpectations: 12 * platform/mac/TestExpectations: 13 1 14 2014-05-22 Simon Fraser <simon.fraser@apple.com> 2 15 -
trunk/LayoutTests/compositing/transitions/transform-on-large-layer.html
r150048 r169232 5 5 <style type="text/css"> 6 6 #box { 7 -webkit-transition: -webkit-transform 0.7s step-end;8 7 display: block; 9 8 width: 1000px; 10 9 height: 2000px; 11 10 background-color: green; 11 transition: -webkit-transform 0.2s step-end; 12 12 } 13 13 … … 27 27 } 28 28 </style> 29 <script type="text/javascript"> 29 <script> 30 if (window.testRunner) 31 testRunner.waitUntilDone(); 32 30 33 function run() 31 34 { 32 if (window.testRunner) { 33 testRunner.waitUntilDone(); 34 window.setTimeout('window.resizeTo(1600, 1200)', 100); 35 } 36 window.onresize = function() { 37 var box = document.getElementById("box"); 38 box.className = "end"; 39 window.setTimeout('testRunner.notifyDone()', 1500); 40 } 35 var box = document.getElementById('box'); 36 box.addEventListener('transitionend', function() { 37 if (window.testRunner) 38 testRunner.notifyDone(); 39 }, false); 40 41 box.className = 'end'; 41 42 } 42 43 </script> 43 44 </head> 44 45 <body onload="run()"> 45 <div id= description>46 <div id="description"> 46 47 The test passes if the box below turns green. 47 48 </div> 48 <div id= sandbox>49 <div id="sandbox"> 49 50 <div id="box" class="start"><font style="opacity:0">ABC</font></div> 50 51 </div> -
trunk/LayoutTests/platform/efl/TestExpectations
r169172 r169232 1274 1274 webkit.org/b/109950 fast/dom/Window/webkitConvertPoint.html [ Failure ] 1275 1275 1276 # Newly added test in r142979 is failing.1277 webkit.org/b/109951 compositing/transitions/transform-on-large-layer.html [ ImageOnlyFailure ]1278 1279 1276 # CUSTOM_ELEMENTS is not enabled. 1280 1277 webkit.org/b/110958 fast/dom/custom [ Skip ] -
trunk/LayoutTests/platform/mac/TestExpectations
r169173 r169232 1001 1001 webkit.org/b/119374 fast/workers/termination-early.html [ Pass Crash ] 1002 1002 webkit.org/b/119375 fast/workers/worker-call.html [ Failure ] 1003 1004 webkit.org/b/110027 compositing/transitions/transform-on-large-layer.html [ Pass ImageOnlyFailure ]1005 1003 1006 1004 webkit.org/b/110186 inspector-protocol/page/javascriptDialogEvents.html [ Skip ]
Note:
See TracChangeset
for help on using the changeset viewer.