blob: 908e89267785f86c5c8d4679055e6a71b9d273f5 [file] [log] [blame]
<!DOCTYPE html>
<html>
<body>
<input id="line1" style="line-height: 1; font-size: 10;"/>
<input id="line2" style="line-height: 2; font-size: 10;">
<script src="../../resources/js-test.js"></script>
<script>
description('Tests whether explicitly set caret style is retained on performing text selection');
var input1 = document.getElementById('line1');
var input2 = document.getElementById('line2');
input1.focus();
var cursorLine1 = internals.absoluteCaretBounds(input1).height;
input2.focus();
var cursorLine2 = internals.absoluteCaretBounds(input2).height;
shouldBe('cursorLine1', 'cursorLine2');
</script>
</body>
</html>