mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
17 lines
379 B
HTML
17 lines
379 B
HTML
<!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>
|