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

Unified Diff: LayoutTests/http/tests/svg/svgload-vs-load.svg

Issue 62083002: Remove support for the externalResourcesRequired attribute. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebaseline test Created 6 years, 11 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/http/tests/svg/svgload-vs-load.svg
diff --git a/LayoutTests/http/tests/svg/svgload-vs-load.svg b/LayoutTests/http/tests/svg/svgload-vs-load.svg
new file mode 100644
index 0000000000000000000000000000000000000000..64f4003ee6e8c9a2fc843a3a07a5a8011afb7765
--- /dev/null
+++ b/LayoutTests/http/tests/svg/svgload-vs-load.svg
@@ -0,0 +1,24 @@
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <script>
+ if (window.testRunner) {
+ testRunner.waitUntilDone();
+ testRunner.dumpAsText();
+ }
+
+ window.onload = function() {
+ if (window.testRunner)
+ testRunner.notifyDone();
+ };
+ </script>
+ <text y="170" x="20" id="console"/>
+ <script>
+ document.documentElement.addEventListener("load", loaded, false);
+ document.documentElement.addEventListener("SVGLoad", loaded, false);
+
+ function loaded(evt) {
+ document.getElementById("console").textContent += evt.type + "(" + evt.target.localName + ") ";
+ }
+ </script>
+ <image id="image" onload="loaded(evt)" onerror="loaded(evt)" x="20" y="20"
+ width="100" height="100" xlink:href="http://127.0.0.1:8000/svg/resources/delayCachedLoad.php" />
+</svg>
« no previous file with comments | « LayoutTests/http/tests/svg/resources/setexecuted.js ('k') | LayoutTests/http/tests/svg/svgload-vs-load-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698