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

Unified Diff: LayoutTests/svg/dom/SVGSVGElement-deprecated-methods.html

Issue 901623002: Deprecate SVGSVGElement.forceRedraw, suspendRedraw, unsuspendRedraw[All] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 5 years, 10 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/svg/dom/SVGSVGElement-deprecated-methods-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/svg/dom/SVGSVGElement-deprecated-methods.html
diff --git a/LayoutTests/svg/dom/SVGSVGElement-deprecated-methods.html b/LayoutTests/svg/dom/SVGSVGElement-deprecated-methods.html
new file mode 100644
index 0000000000000000000000000000000000000000..f00845b138cde909468857b44df1033337053f62
--- /dev/null
+++ b/LayoutTests/svg/dom/SVGSVGElement-deprecated-methods.html
@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<script src="../../resources/js-test.js"></script>
+<script>
+if (window.testRunner)
+ testRunner.dumpAsText();
+</script>
+Test deprecation messages in SVGSVGElement.
+<svg/>
+<script>
+var svg = document.querySelector("svg");
+svg.forceRedraw();
+svg.suspendRedraw(6000);
+svg.unsuspendRedraw(47);
+svg.unsuspendRedrawAll();
+</script>
« no previous file with comments | « no previous file | LayoutTests/svg/dom/SVGSVGElement-deprecated-methods-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698