blob: e3e9cce61beec1cd2b82a843e74326bbce005ef1 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script src="../../resources/js-test.js"></script>
<script>
window.jsTestIsAsync = true;
function runTest() {
var bounds = color_input_element.getBoundingClientRect();
var range = document.caretRangeFromPoint(bounds.left + bounds.width / 2, bounds.top + bounds.height / 2);
var shadow_tree_container = range.commonAncestorContainer;
shadow_tree_container.prepend("foo");
color_input_element.disabled = true;
testPassed("Passes if we did not debug assert.");
finishJSTest();
}
</script>
</head>
<body onload="runTest()">
<input type="color" id="color_input_element" style="position:absolute; height: 100px; width: 100px;">
</body>
</html>