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

Unified Diff: LayoutTests/svg/custom/remove-border-property-on-root.html

Issue 211193002: Compute correct repaint rect for decorated RenderSVGRoots (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase. Created 6 years, 9 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
Index: LayoutTests/svg/custom/remove-border-property-on-root.html
diff --git a/LayoutTests/svg/custom/remove-border-property-on-root.html b/LayoutTests/svg/custom/remove-border-property-on-root.html
new file mode 100644
index 0000000000000000000000000000000000000000..ca40d882b14a1079fdfe6798893fcc02648a5cac
--- /dev/null
+++ b/LayoutTests/svg/custom/remove-border-property-on-root.html
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<script>
+if (window.testRunner)
+ testRunner.waitUntilDone();
+window.onload = function() {
+ setTimeout(function() {
+ requestAnimationFrame(function() {
+ document.querySelector('svg').style.removeProperty('border');
+ if (window.testRunner)
+ testRunner.notifyDone();
+ });
+ }, 0);
+};
+</script>
+<svg style="border: 10px solid red" width="100" height="100">
+ <rect width="100" height="100" fill="green"/>
+</svg>

Powered by Google App Engine
This is Rietveld 408576698