<!DOCTYPEhtml> <!-- This test checks to be sure we can render SVG-as-an-image
from a 'blob' URI. -->
<html class="reftest-wait">
<head>
<script>
function go() {
// Generate a blob URL encoding of an SVG document var blobURL = generateBlobURL();
// Tell our img element to render the URL varimg = document.getElementsByTagName("img")[0] img.src = blobURL;
// 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.25 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.