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

Unified Diff: third_party/WebKit/LayoutTests/svg/custom/createImageElement2.xhtml

Issue 2086383002: Deflake svg/custom/createImageElement2.xhtml (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/svg/custom/createImageElement2.xhtml
diff --git a/third_party/WebKit/LayoutTests/svg/custom/createImageElement2.xhtml b/third_party/WebKit/LayoutTests/svg/custom/createImageElement2.xhtml
index 5c614365919e9ec8ccc82618fa9509c5a75e1b19..fb150e0f71b15f4250762ba7517016f4382a30a4 100644
--- a/third_party/WebKit/LayoutTests/svg/custom/createImageElement2.xhtml
+++ b/third_party/WebKit/LayoutTests/svg/custom/createImageElement2.xhtml
@@ -5,9 +5,16 @@
<body id="body" style="position:absolute; z-index:0; border:1px solid black; left:5%; top:5%; width:90%; height:90%;">
<svg xmlns="http://www.w3.org/2000/svg" id='root' width="600px" height="100px">
<script type="text/javascript"><![CDATA[
+ if (window.testRunner)
+ testRunner.waitUntilDone();
+
window.onload = function() {
var el = document.getElementById('root');
var ie = document.createElementNS('http://www.w3.org/2000/svg', "image");
+ ie.onload = function() {
+ if (window.testRunner)
+ testRunner.notifyDone();
+ };
ie.setAttribute("x", "10px");
ie.setAttribute("y", "10px");
ie.setAttribute("width", "100px");
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698