mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-14 13:01:55 +00:00
8 lines
248 B
HTML
8 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>
|