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

Side by Side Diff: LayoutTests/compositing/gestures/gesture-tapHighlight-2-overflow-div-composited-outer-expected.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/link-highlight-helper.js"></script> 4 <script src="resources/link-highlight-helper.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 style="position: relative; left: 10px; top: 40px; width: 300px; height: 150 px; overflow-y: scroll; overflow-x: scroll;"> 9 <div style="position: relative; left: 10px; top: 40px; width: 300px; height: 150 px; overflow-y: scroll; overflow-x: scroll;">
10 <div style="-webkit-transform: translateZ(0)"> 10 <div style="transform: translateZ(0)">
11 <div style="position: relative; left: 10px; top: i10px; width: 200px; height: 100px; overflow-y: scroll; overflow-x: scroll;"> 11 <div style="position: relative; left: 10px; top: i10px; width: 200px; height: 100px; overflow-y: scroll; overflow-x: scroll;">
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="" id="targetLink" class="activeLink">Target Link.</a><br> 15 <a href="" id="targetLink" class="activeLink">Target Link.</a><br>
16 <a href="">Link 4</a><br> 16 <a href="">Link 4</a><br>
17 <a href="">Link 5</a><br> 17 <a href="">Link 5</a><br>
18 </div> 18 </div>
19 <a href="">Link 6</a><br> 19 <a href="">Link 6</a><br>
20 <a href="">Link 7</a><br> 20 <a href="">Link 7</a><br>
21 <a href="">Link 8</a><br> 21 <a href="">Link 8</a><br>
22 <a href="">Link 9</a><br> 22 <a href="">Link 9</a><br>
23 </div></div> 23 </div></div>
24 <div style="position: relative; left: 10px; top: 80px"> 24 <div style="position: relative; left: 10px; top: 80px">
25 This test is successful if "Target Link" above is covered in a green rectangle w ith square corners. 25 This test is successful if "Target Link" above is covered in a green rectangle w ith square corners.
26 </div> 26 </div>
27 <script> 27 <script>
28 function runTest() { 28 function runTest() {
29 createCompositedHighlight(document.getElementById('targetLink')); 29 createCompositedHighlight(document.getElementById('targetLink'));
30 if (window.testRunner) 30 if (window.testRunner)
31 testRunner.dumpAsTextWithPixelResults(); 31 testRunner.dumpAsTextWithPixelResults();
32 } 32 }
33 </script> 33 </script>
34 </script> 34 </script>
35 </body> 35 </body>
36 </html> 36 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698