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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlin k">
2 <script>
3 if (window.testRunner) {
4 testRunner.waitUntilDone();
5 testRunner.dumpAsText();
6 }
7
8 window.onload = function() {
9 if (window.testRunner)
10 testRunner.notifyDone();
11 };
12 </script>
13 <text y="170" x="20" id="console"/>
14 <script>
15 document.documentElement.addEventListener("load", loaded, false);
16 document.documentElement.addEventListener("SVGLoad", loaded, false);
17
18 function loaded(evt) {
19 document.getElementById("console").textContent += evt.type + "(" + evt.target.localName + ") ";
20 }
21 </script>
22 <image id="image" onload="loaded(evt)" onerror="loaded(evt)" x="20" y="20"
23 width="100" height="100" xlink:href="http://127.0.0.1:8000/svg/resources/dela yCachedLoad.php" />
24 </svg>
OLDNEW
« 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