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

Side by Side Diff: LayoutTests/fast/dom/shadow/shadow-reprojection-click.html

Issue 14594006: Remove Internals::createShadowRoot(element) and polyfill.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 7 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <script src="resources/polyfill.js"></script>
4 3
5 <p>This test confirms that clicking a shadow reprojected element does not cause a crash.</p> 4 <p>This test confirms that clicking a shadow reprojected element does not cause a crash.</p>
6 5
7 <div id="container"> 6 <div id="container">
8 <div id="host1"><div>Host Child</div></div> 7 <div id="host1"><div>Host Child</div></div>
9 </div> 8 </div>
10 9
11 <script> 10 <script>
12 if (window.testRunner) 11 if (window.testRunner)
13 testRunner.dumpAsText(); 12 testRunner.dumpAsText();
(...skipping 14 matching lines...) Expand all
28 if (window.eventSender) { 27 if (window.eventSender) {
29 eventSender.mouseMoveTo(target.offsetLeft + 10, target.offsetTop + 2); 28 eventSender.mouseMoveTo(target.offsetLeft + 10, target.offsetTop + 2);
30 eventSender.mouseDown(); 29 eventSender.mouseDown();
31 eventSender.mouseUp(); 30 eventSender.mouseUp();
32 } 31 }
33 32
34 container.innerHTML = "PASS"; 33 container.innerHTML = "PASS";
35 </script> 34 </script>
36 35
37 </html> 36 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/shadow/shadow-reprojection.html ('k') | LayoutTests/fast/dom/shadow/shadow-reprojection-dynamic.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698