| Index: third_party/WebKit/LayoutTests/fast/backgrounds/background-image-relative-url-in-iframe.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/backgrounds/background-image-relative-url-in-iframe.html b/third_party/WebKit/LayoutTests/fast/backgrounds/background-image-relative-url-in-iframe.html
|
| index fadf494c3c627127c2ac49d796b8b8f669c9353a..64a1433bf847deebe5167e0c89c3168ce9fcbf09 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/backgrounds/background-image-relative-url-in-iframe.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/backgrounds/background-image-relative-url-in-iframe.html
|
| @@ -1,8 +1,12 @@
|
| <!DOCTYPE html>
|
| <iframe id="iframe"></iframe>
|
| <script>
|
| + if (window.testRunner) {
|
| + testRunner.waitUntilDone();
|
| + }
|
| +
|
| var iframe = document.getElementById('iframe');
|
| - iframe.contentDocument.body.innerHTML = `
|
| + iframe.srcdoc = `
|
| <style>
|
| .bg-img {
|
| background: url('./resources/green-24x24.png') no-repeat;
|
| @@ -11,4 +15,8 @@
|
| }
|
| </style>
|
| <div class='bg-img'></div>`;
|
| +
|
| + if (window.testRunner) {
|
| + iframe.onload = function() { testRunner.notifyDone(); };
|
| + }
|
| </script>
|
|
|