mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-10 18:10:56 +09:00
14 lines
397 B
HTML
14 lines
397 B
HTML
<!DOCTYPE html>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
const fragment = document.createDocumentFragment();
|
|
fragment.appendChild(document.createTextNode("hello"));
|
|
|
|
const walker = document.createTreeWalker(document, 0);
|
|
walker.currentNode = fragment;
|
|
|
|
walker.nextNode();
|
|
println("PASS (Didn't get stuck)");
|
|
});
|
|
</script>
|