5 <title>Test mismatched backgrounds
</title>
6 <style type=
"text/css" media=
"screen">
11 border:
1px solid black;
12 background-repeat: no-repeat;
15 /* Mismatched layers */
17 background-image: url('repeat/resources/white.gif');
21 background-image: url('repeat/resources/white.gif'), url('repeat/resources/white.gif');
26 <script type=
"text/javascript" charset=
"utf-8">
28 if (window.testRunner) {
29 testRunner.dumpAsText();
30 testRunner.waitUntilDone();
35 document.getElementById('box').className = 'box final';
36 window.setTimeout(function() {
37 document.getElementById('box').style.display = 'none';
38 if (window.testRunner)
39 testRunner.notifyDone();
43 window.addEventListener('load', runTest, false);
48 <p>Test for
<a href=
"https://bugs.webkit.org/show_bug.cgi?id=28295">https://bugs.webkit.org/show_bug.cgi?id=
28295</a>; should not assert.
</p>
49 <div id=
"box" class=
"box"></div>