mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
19 lines
375 B
XML
19 lines
375 B
XML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
var svgDoc = (new DOMParser).parseFromString("<svg xmlns='http://www.w3.org/2000/svg'></svg>", "image/svg+xml");
|
|
var svgRoot = svgDoc.documentElement;
|
|
var rf = svgRoot.requiredFeatures;
|
|
document.adoptNode(svgRoot);
|
|
Object.getOwnPropertyNames(rf);
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body onload="boom();"></body>
|
|
</html>
|