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

Side by Side Diff: LayoutTests/svg/dom/title-in-shadow-tree.html

Issue 216463003: Allow <use> inside author shadow roots (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove loop in isInUserAgentShadowTree, add a title test Created 6 years, 8 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 <svg width="100" height="100" style="display: none;">
3 <rect id="greenSquare" width="100" height="100" fill="green">
4 <title>FAIL: This text should not appear as a tooltip.</title>
5 </rect>
6 </svg>
7
8 <template id="template">
9 <svg width="100" height="100">
10 <use xlink:href="#greenSquare">
11 <title>PASS: This text should appear as a tooltip.</title>
12 </use>
13 </svg>
14 </template>
15
16 <script>
17 document.body.createShadowRoot().appendChild(template.content.cloneNode(true ));
18
19 onload = function() {
20 if (window.eventSender) {
21 eventSender.dragMode = false;
22 eventSender.mouseMoveTo(75, 75);
23 document.write(testRunner.tooltipText);
24 if (window.testRunner)
25 testRunner.dumpAsText();
26 }
27 }
28 </script>
29
30 FAIL: Test did not run.
OLDNEW
« no previous file with comments | « LayoutTests/svg/dom/nested-use-in-shadow-tree-expected.html ('k') | LayoutTests/svg/dom/title-in-shadow-tree-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698