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

Unified Diff: LayoutTests/css3/filters/effect-reference-rename-2.html

Issue 1068073005: Handle layer clients in LayoutSVGResourceContainer::registerResource (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Continue in loop Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/css3/filters/effect-reference-rename-2-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/css3/filters/effect-reference-rename-2.html
diff --git a/LayoutTests/css3/filters/effect-reference-rename-2.html b/LayoutTests/css3/filters/effect-reference-rename-2.html
new file mode 100644
index 0000000000000000000000000000000000000000..3f54f0b0849494684ea9de6802d3b682a074fa7c
--- /dev/null
+++ b/LayoutTests/css3/filters/effect-reference-rename-2.html
@@ -0,0 +1,13 @@
+<!DOCTYPE html>
+<script src="../../resources/run-after-display.js"></script>
+<svg height="0">
+ <filter id="NotMyFilter">
+ <feColorMatrix type="hueRotate" values="90"/>
+ </filter>
+</svg>
+<div style="width: 100px; height: 100px; background-color: red; -webkit-filter: url(#MyFilter); filter: url(#MyFilter);"></div>
+<script>
+runAfterDisplay(function() {
+ document.getElementById("NotMyFilter").id = "MyFilter";
+}, true);
+</script>
« no previous file with comments | « no previous file | LayoutTests/css3/filters/effect-reference-rename-2-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698