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

Side by Side Diff: LayoutTests/touchadjustment/simple-shadow-dom.html

Issue 370843002: Allow touch adjustment to return Shadow DOM node. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Use testTouchPoint 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <head>
3 <style>
4 #targetDiv {
5 background: #00f;
6 height: 100px;
7 width: 100px;
8 position: absolute;
9 left: 0px;
10 top: 0px;
11 }
12 </style>
13 </head>
14 <div id="targetDiv"></div>
15
16 <script src="../resources/js-test.js"></script>
17 <script src="resources/touchadjustment.js"></script>
18 <script>
19 function addShadowDOM() {
20 var targetDiv = document.getElementById("targetDiv");
21 var root = targetDiv.createShadowRoot();
22 var shadowDiv = document.createElement("div");
23 shadowDiv.style.width = "50px";
24 shadowDiv.style.height = "50px";
25 shadowDiv.style.background = "#ff0";
26 shadowDiv.style.position = "absolute";
27 shadowDiv.style.left = "0px";
28 shadowDiv.style.top = "0px";
29 shadowDiv.id = 'shadowDiv';
30 shadowDiv.addEventListener('click', function() {}, false);
31 root.appendChild(shadowDiv);
32 return shadowDiv;
33 }
34
35 function runTouchTests() {
36 var shadowDiv = addShadowDOM();
37 element = document.getElementById("targetDiv");
38 element.addEventListener('click', function() {}, false);
39 document.addEventListener('click', function() {}, false);
40 testTouchPoint(touchPoint(25, 25, 10), shadowDiv);
41 }
42
43 function runTests()
44 {
45 if (window.testRunner && window.internals && internals.touchNodeAdjustedToBe stClickableNode) {
46 description('Test that a hit right in the middle of a shadow dom node re turns it and not its host.')
47 runTouchTests();
48 }
49 }
50 runTests();
51 </script>
OLDNEW
« no previous file with comments | « LayoutTests/touchadjustment/resources/touchadjustment.js ('k') | LayoutTests/touchadjustment/simple-shadow-dom-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698