chromium/third_party/blink/web_tests/svg/dom/resources/altGlyph-dom.js

description(

"This test checks that SVG altGlyph elements create the appropriate DOM object."

);

var altGlyph = document.getElementById("altGlyph");
shouldBe("altGlyph.tagName", '"altGlyph"');
shouldBe("altGlyph.namespaceURI", '"http://www.w3.org/2000/svg"');
shouldBe("altGlyph.format", '"image/svg+xml"');
shouldThrow("altGlyph.format = 'x'");

shouldBe("altGlyph.getStartPositionOfChar(0).x", '72');


successfullyParsed = true;