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

Unified Diff: LayoutTests/fast/dom/shadow/shadow-disable.html

Issue 585183004: Enable author shadows for SVG elements (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: ::shadow > patches { rebase } Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/fast/dom/shadow/shadow-disable-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/dom/shadow/shadow-disable.html
diff --git a/LayoutTests/fast/dom/shadow/shadow-disable.html b/LayoutTests/fast/dom/shadow/shadow-disable.html
index 28904c94412e6dd23ff6fd34933cbd786b933451..9234c342184d7ade39981a57ef1ef6afc9f4b4c9 100644
--- a/LayoutTests/fast/dom/shadow/shadow-disable.html
+++ b/LayoutTests/fast/dom/shadow/shadow-disable.html
@@ -5,7 +5,11 @@
</head>
<body>
<p id="description"></p>
-<svg xmlns="http://www.w3.org/2000/svg" style="display:none"><tref id="tref" /></svg>
+<svg xmlns="http://www.w3.org/2000/svg" style="display:none">
+ <g id="g"></g>
+ <rect id="rect"></rect>
+ <svg id="svg"></svg>
+</svg>
<pre id="console"></pre>
<script>
description("Tests to ensure that shadow element cannot be created in elements having dynamically created shadow root.");
@@ -28,11 +32,13 @@ var elementsToSuccess = [
document.createElement('applet'),
document.createElement('embed'),
document.createElement('object'),
+ document.getElementById('g'),
+ document.getElementById('rect'),
+ document.getElementById('svg'),
];
// See crbug.com/234020 .
var elementsToFail = [
- document.getElementById('tref'),
document.createElement('audio'),
document.createElement('video'),
document.createElement('select'),
« no previous file with comments | « no previous file | LayoutTests/fast/dom/shadow/shadow-disable-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698