summaryrefslogtreecommitdiffstats
path: root/layout/style/test/test_bug517224.html
blob: 83d2bb8d80d6807b278e749e7577838ffba3e674 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=517224
-->
<head>
  <title>Test for Bug 517224</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
  <script type="application/ecmascript" src="bug517224.sjs?reset"></script>
  <style type="text/css">

  p#display { background: url(bug517224.sjs?image); }
  p#display { background-image: none; }

  </style>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=517224">Mozilla Bug 517224</a>
<p id="display">Element with overridden background</p>
<pre id="test">
<script type="application/javascript">

/** Test for Bug 517224 **/

// Test that we don't load background images for style rules that are
// always overridden.

// Make sure the style has been computed
var bi =
  getComputedStyle(document.getElementById('display'), "").backgroundImage;
SimpleTest.waitForExplicitFinish();
window.onload = run;

function run()
{
  var script = document.createElement("script");
  script.setAttribute("src", "bug517224.sjs?result");
  document.body.appendChild(script);
}

</script>
</pre>
</body>
</html>