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

Unified Diff: LayoutTests/svg/custom/loadevents-externalresourcesrequired-displaynone.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/svg/custom/loadevents-externalresourcesrequired-displaynone.svg
diff --git a/LayoutTests/svg/custom/loadevents-externalresourcesrequired-displaynone.svg b/LayoutTests/svg/custom/loadevents-externalresourcesrequired-displaynone.svg
deleted file mode 100644
index a834350b6a26eaf4e69d75af264670a74b1c7c37..0000000000000000000000000000000000000000
--- a/LayoutTests/svg/custom/loadevents-externalresourcesrequired-displaynone.svg
+++ /dev/null
@@ -1,30 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" onload="reportLoadEvent(this);runTest();">
- <script>
- <![CDATA[
- if (window.testRunner)
- testRunner.dumpAsText();
-
- var results = new Array();
-
- function reportLoadEvent(el) {
- results.push(el.localName);
- }
- function runTest()
- {
- var test = document.getElementById("console");
- if ( results.length != 4 || results[0] != "text" ||
- results[1] != "image" || results[2] != "g" ||
- results[3] != "svg") {
- test.appendChild(document.createTextNode("Failed"));
- } else {
- test.appendChild(document.createTextNode("Passed"));
- }
- }
- ]]>
- </script>
- <g onload="reportLoadEvent(this)">
- <image display="none" externalResourcesRequired="true" id="image" onload="reportLoadEvent(this)" width="100" height="100" xlink:href="resources/green-checker.png" />
- <text y="130" x="20">This tests load dispatching order with externalResourcesRequired and an image that does not render(display=none). Bug 16447</text>
- <text y="150" x="20" id="console" onload="reportLoadEvent(this)"/>
- </g>
-</svg>

Powered by Google App Engine
This is Rietveld 408576698