mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-28 12:18:56 +00:00
LibWeb: Update Selection.collapse
algorithm
This commit is contained in:
parent
8a6c8a1c27
commit
94230acf28
Notes:
github-actions[bot]
2024-09-03 15:43:17 +00:00
Author: https://github.com/HolonProduction 🔰
Commit: 94230acf28
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/1252
3 changed files with 43 additions and 2 deletions
|
@ -0,0 +1,35 @@
|
|||
<script src="include.js"></script>
|
||||
<button id="button1"></button>
|
||||
<div id="root"></div>
|
||||
<script>
|
||||
function printSelectionNodes(selection) {
|
||||
if (selection.anchorNode) {
|
||||
println(`${selection.anchorNode.id}`);
|
||||
} else {
|
||||
println(`${selection.anchorNode}`);
|
||||
}
|
||||
if (selection.focusNode) {
|
||||
println(`${selection.focusNode.id}`);
|
||||
} else {
|
||||
println(`${selection.focusNode}`);
|
||||
}
|
||||
}
|
||||
|
||||
test(() => {
|
||||
printSelectionNodes(document.getSelection());
|
||||
|
||||
const button1 = document.querySelector("#button1");
|
||||
document.getSelection().collapse(button1);
|
||||
|
||||
printSelectionNodes(document.getSelection());
|
||||
|
||||
const rootElement = document.getElementById("root");
|
||||
const shadowRoot = rootElement.attachShadow({ mode: "open" });
|
||||
const button2 = document.createElement("button");
|
||||
button2.id = "button2";
|
||||
shadowRoot.appendChild(button2);
|
||||
document.getSelection().collapse(button2);
|
||||
|
||||
printSelectionNodes(document.getSelection());
|
||||
});
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue