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

Side by Side Diff: LayoutTests/fast/dom/shadow/event-path-svg.html

Issue 477883003: Support SVG in event.path. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | LayoutTests/fast/dom/shadow/event-path-svg-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script src="../../../resources/js-test.js"></script>
3 <script src="resources/shadow-dom.js"></script>
4 <pre id="console"></pre>
5 <svg version="1.1" baseProfile="full" xmlns="http://www.w3.org/2000/svg" width=" 100%">
6 <circle id="circle" cx="128" cy="128" r="128"/>
7 </svg>
8 <script>
9 function handler(evnet) {
10 debug(dumpNodeList(event.path));
11 }
12 circle.addEventListener('click', handler);
13 document.addEventListener('click', handler);
14 circle.dispatchEvent(new MouseEvent('click', {bubbles: true}));
15 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/dom/shadow/event-path-svg-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698