Index: LayoutTests/svg/repaint/remove-outline-property-on-root.html |
diff --git a/LayoutTests/svg/repaint/remove-outline-property-on-root.html b/LayoutTests/svg/repaint/remove-outline-property-on-root.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..4938ae5ba1703b2ff21d3c758b7eba24f23b9824 |
--- /dev/null |
+++ b/LayoutTests/svg/repaint/remove-outline-property-on-root.html |
@@ -0,0 +1,19 @@ |
+<!DOCTYPE html> |
+<script src="../../fast/repaint/resources/text-based-repaint.js"></script> |
+<script> |
+window.testIsAsync = true; |
+window.onload = runRepaintTest; |
+ |
+function repaintTest() { |
+ setTimeout(function() { |
+ requestAnimationFrame(function() { |
+ document.querySelector('svg').style.removeProperty('outline'); |
+ if (window.testRunner) |
+ finishRepaintTest(); |
+ }); |
+ }, 0); |
+}; |
+</script> |
+<svg style="outline: 10px solid red" width="100" height="100"> |
+ <rect width="100" height="100" fill="green"/> |
+</svg> |