Chromium Code Reviews| Index: LayoutTests/svg/custom/image-svgload-after-docload.html |
| diff --git a/LayoutTests/svg/custom/image-svgload-after-docload.html b/LayoutTests/svg/custom/image-svgload-after-docload.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..5d9f6e847ae1412664065098f406adf0b74534ab |
| --- /dev/null |
| +++ b/LayoutTests/svg/custom/image-svgload-after-docload.html |
| @@ -0,0 +1,22 @@ |
| +<!DOCTYPE html> |
| +<script src="../../resources/testharness.js"></script> |
| +<script src="../../resources/testharnessreport.js"></script> |
| +<svg></svg> |
| +<script> |
| +var t = async_test("No 'load' is fired on the SVG root when an image is inserted into it."); |
| + |
| +window.onload = function() { |
| + var svgRoot = document.querySelector('svg'); |
| + svgRoot.onload = t.unreached_func("'load' should not fire on the SVG root."); |
| + |
| + var image = document.createElementNS('http://www.w3.org/2000/svg', 'image'); |
| + image.setAttributeNS('http://www.w3.org/1999/xlink', 'xlink:href', 'resources/red-checker.png'); |
| + image.setAttribute('width', 10); |
| + image.setAttribute('height', 10); |
| + image.onload = t.step_func(function() { |
| + assert_true(true); |
| + setTimeout(function() { t.done(); }, 0); |
|
pdr.
2014/07/10 03:48:15
I don't think this setTimeout is needed, nor the a
fs
2014/07/10 08:32:50
The setTimeout is needed to provide a "window" for
|
| + }); |
| + svgRoot.appendChild(image); |
| +} |
| +</script> |