Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / misc / object-embedding-svg-delayed-size-negotiation.xhtml
blobcebd614d091c7eb58bf64f12b7e5d8f253c397c6
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML Basic 1.1//EN" "http://www.w3.org/TR/xhtml-basic/xhtml-basic11.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml">
4 <head>
5 <style>
6 object {
7 background: red;
9 </style>
10 <script>
11 if (window.testRunner)
12 testRunner.waitUntilDone();
14 function finished() {
15 if (window.testRunner)
16 setTimeout(function() { testRunner.notifyDone(); }, 0);
18 </script>
19 </head>
20 <body>
21 <!-- Shoud fill the whole screen, no red should be visible and a vertical scrollbar, as the embedded svg is as large as the host document itself -->
22 <object data="resources/svg-slow.pl" type="image/svg+xml" onload="finished()"/>
23 </body>
24 </html>