blob: 2295abe472caac404a473ad5466588ef905f050c [file] [log] [blame]
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;