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

Side by Side Diff: LayoutTests/svg/custom/use-instanceRoot-event-listeners.xhtml

Issue 257033002: Do not implement EventTarget on SVGElementInstance (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Try to fix TestExpectations Created 6 years, 6 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 <html xmlns="http://www.w3.org/1999/xhtml">
2 <head>
3 <script src="../../resources/js-test.js"></script>
4 <script src="../../fast/repaint/resources/text-based-repaint.js"></script>
5 <script>window.outputRepaintRects = false;</script>
6 </head>
7 <body onload="runRepaintAndPixelTest()">
8
9 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlin k" width="150" height="150">
10 <defs>
11 <rect id="target" fill="red" width="100" height="100" onmousedown="eventHa ndler(evt)"/>
12 </defs>
13 <use id="test" xlink:href="#target"/>
14 </svg>
15
16 <p id="description"></p>
17 <div id="console"></div>
18 <script src="resources/use-instanceRoot-event-listeners.js"></script>
19 </body>
20 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698