Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(629)

Side by Side Diff: LayoutTests/compositing/gestures/gesture-tapHighlight-1-overflow-div-composited-scroll-clip.html

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../resources/js-test.js"></script> 4 <script src="../../resources/js-test.js"></script>
5 <link rel="stylesheet" type="text/css" href="resources/link-highlight-style.css" > 5 <link rel="stylesheet" type="text/css" href="resources/link-highlight-style.css" >
6 </head> 6 </head>
7 <body onload="runTest();"> 7 <body onload="runTest();">
8 <div style="position: relative; left: 10px; top: 10px"></div> 8 <div style="position: relative; left: 10px; top: 10px"></div>
9 <div id="targetDiv" style="position: relative; left: 10px; top: 40px; width: 200 px; height: 100px; overflow-y: scroll; overflow-x: scroll;"> 9 <div id="targetDiv" style="position: relative; left: 10px; top: 40px; width: 200 px; height: 100px; overflow-y: scroll; overflow-x: scroll;">
10 <div style="-webkit-transform: translateZ(0)"> 10 <div style="transform: translateZ(0)">
11 <a href="" id="targetLink" style="-webkit-tap-highlight-color: rgba(0, 255, 0, 0 .5)">Target Link.</a><br> 11 <a href="" id="targetLink" style="-webkit-tap-highlight-color: rgba(0, 255, 0, 0 .5)">Target Link.</a><br>
12 <a href="">Link 1</a><br> 12 <a href="">Link 1</a><br>
13 <a href="">Link 2</a><br> 13 <a href="">Link 2</a><br>
14 <a href="">Link 3</a><br> 14 <a href="">Link 3</a><br>
15 <a href="">Link 4</a><br> 15 <a href="">Link 4</a><br>
16 <a href="">Link 5</a><br> 16 <a href="">Link 5</a><br>
17 </div></div> 17 </div></div>
18 <div style="position: relative; left: 10px; top: 80px"> 18 <div style="position: relative; left: 10px; top: 80px">
19 This test is successful if "Target Link" is not visible and no green rectangle w ith square corners is seen. 19 This test is successful if "Target Link" is not visible and no green rectangle w ith square corners is seen.
20 </div> 20 </div>
(...skipping 13 matching lines...) Expand all
34 targetDiv.scrollTop += 20; 34 targetDiv.scrollTop += 20;
35 window.setTimeout(function() { window.testRunner.notifyDone(); }, 0); 35 window.setTimeout(function() { window.testRunner.notifyDone(); }, 0);
36 } else { 36 } else {
37 debug("This test requires DumpRenderTree."); 37 debug("This test requires DumpRenderTree.");
38 } 38 }
39 } 39 }
40 </script> 40 </script>
41 </script> 41 </script>
42 </body> 42 </body>
43 </html> 43 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698