1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 06:47:34 +00:00

LibWeb: Implement Element.getAttributeNS

This commit is contained in:
Shannon Booth 2024-01-13 17:31:46 +13:00 committed by Andreas Kling
parent 8cf783b260
commit 785fa60cca
5 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,16 @@
<script src="../include.js"></script>
<svg xmlns="http://www.w3.org/2000/svg">
<script id="with-xlink-href" xlink:href="test"></script>
<script id="no-xlink-href" href="test"></script>
</svg>
<script id="svg-script-element">
test(() => {
const xlinkNS = document.getElementById("with-xlink-href");
println(`xlink:ref getAttribute = '${xlinkNS.getAttribute("href")}'`);
println(`xlink:ref getAttributeNS = '${xlinkNS.getAttributeNS("http://www.w3.org/1999/xlink", "href")}'`);
const noNS = document.getElementById("no-xlink-href");
println(`href getAttribute = '${noNS.getAttribute("href")}'`);
println(`href getAttributeNS = '${noNS.getAttributeNS("http://www.w3.org/1999/xlink", "href")}'`);
});
</script>