<!DOCTYPEhtml> <!-- This test checks to be sure we allow
'blob' URIs *inside of* SVG-as-an-image. -->
<html class="reftest-wait">
<head>
<script>
function go() {
// Generate a blob URL encoding of an SVG document var blobURL = generateBlobURL();
// Now generate a data URI, containing our blob URI var outerSVG = '';
// Tell our img element to render the URL varimg = document.getElementsByTagName("img")[0] img.src = "data:image/svg+xml," + outerSVG;
// Once our img loads, take reftest snapshot. img.addEventListener("load", function() {
document.documentElement.removeAttribute("class");
});
}
// Helper function -- returns a blob URL representing a
// 100x100 fully-lime SVG document.
function generateBlobURL() { var svg = ' + '' + '';
return self.URL.createObjectURL(new Blob([svg], {type: "image/svg+xml"}));
}
</script>
</head>
<body onload="go()">
<img src="">
</body>
</html>
Messung V0.5
¤ Dauer der Verarbeitung: 0.21 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.