tenfourfox/layout/reftests/bugs/386310-script.js
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

13 lines
428 B
JavaScript

function wrapNode() {
var elm = document.getElementById("test");
var span = document.createElement("span");
span.setAttribute("style", "background: yellow");
var range = document.createRange();
var start = "first second third [".length;
range.setStart(elm.lastChild, start);
range.setEnd(elm.lastChild, start + "fourth".length);
range.surroundContents(span);
}
window.addEventListener("load", wrapNode, false);