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

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: Reverted back to last working logic Created 6 years, 4 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 <style>
7 #outerDiv {
8 width: 150px;
9 }
10 #outerDiv, #outerDiv div {
11 padding: 15px;
12 border-style: solid;
13 }
14 </style>
15 </head>
16 <body onload="runTest();">
17 <div class="opaqueHighlight" id="outerDiv" style="cursor: pointer">
18 <div style="cursor: pointer;">
19 <div style="cursor: default;">
20 <div id="innerDiv"></div>
21 </div>
22 </div>
23 </div>
24
25 <script>
26 function runTest() {
27 if (window.testRunner)
28 testRunner.dumpAsTextWithPixelResults();
29 }
30 </script>
31 </body>
32 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698