blob: 38ed7143b2fbb10ac4fb94c8281e113aff5253a8 [file] [log] [blame]
<!DOCTYPE html>
<head>
<script src="../js/resources/js-test-pre.js"></script>
<script src="resources/common.js"></script>
</head>
<body>
<p>Check if the position of a validation message for a range control is good.</p>
<form action="validation-message-on-range.html">
<input type=range id=host required>
<input type=submit id=submit>
</form>
<div id="console"></div>
<script>
function check() {
hostRect = getAbsoluteRect(host);
bubbleRect = getAbsoluteRect(getValidationMessageBubbleNode(host));
debug('The top of the bubble should be on the bottom of the host node:');
shouldBe('bubbleRect.top', 'hostRect.bottom');
debug('');
finishJSTest();
}
var host = $('host');
var hostRect;
var bubbleRect;
host.setCustomValidity('Invalid Value');
$('submit').click();
if (window.layoutTestController) {
setTimeout(check, 0);
} else {
debug('The test requires layoutTestController.');
}
var jsTestIsAsync = true;
</script>
<script src="../js/resources/js-test-post.js"></script>
</body>