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

Side by Side Diff: LayoutTests/compositing/gestures/gesture-tapHighlight-nested-cursor-expected.html

Issue 402603005: Disable touch highlight when the touched node has no hand-cursor. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added 2 new tests. Created 6 years, 5 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
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script src="../../resources/js-test.js"></script>
5 <link rel="stylesheet" type="text/css" href="resources/link-highlight-style.css" >
6 </head>
7 <body onload="runTest();">
8 <div class="opaqueHighlight" id="targetDiv" style="position: fixed; top: 100px; left: 10px; width: 350px; height: 110px; border-style: solid; cursor: pointer; f ont-size: x-small">
9 pointer
10 <div style="position: fixed; top: 110px; left: 60px; width: 250px; height: 90px; border-style: solid; cursor: pointer;">
11 pointer
12 <div style="position: fixed; top: 120px; left: 110px; width: 150px; height: 70px ; border-style: solid; cursor: default;">
13 default
14 <div style="position: fixed; top: 130px; left: 160px; width: 50px; height: 50px; border-style: solid;">
15 none
16 </div>
17 </div>
18 </div>
19 </div>
20 <div style="position: absolute; left: 10px; top: 250px; -webkit-transform: trans lateZ(0);">
21 This test is successful if there is no green rectangle above.
22 </div>
23 <script>
24 function runTest() {
25 if (window.testRunner)
26 testRunner.dumpAsTextWithPixelResults();
27 }
28 </script>
29 </body>
30 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698