mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
9 lines
248 B
HTML
9 lines
248 B
HTML
<!DOCTYPE html>
|
|
<div id="foo" n="1"></div><div id="foo" n="2"></div>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
println("getElementById('foo') => " + document.getElementById("foo").getAttribute("n"));
|
|
});
|
|
</script>
|