summaryrefslogtreecommitdiffstats
path: root/layout/style/crashtests/665209-1.html
blob: 30e8055ebb6462f3196c8e1fc70b8b63c38fbe99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<script>
function boom()
{
  var w = '<div xmlns="http://www.w3.org/1999/xhtml" style="content: url(#);" />';
  var v = 'url("data:image/svg+xml,' + encodeURIComponent(w) + '")';
  document.documentElement.style.content = v;
  document.documentElement.className = "";
}
</script>
</head>

<body onload="boom();"></body>
</html>