<!DOCTYPE html>
<meta name=fuzzy content="maxDifference=0-3; totalPixels=0-1000">
<script>
testRunner.dumpAsText();
testRunner.waitUntilDone();
</script>
<script src="../../../resources/testdriver.js"></script>
<script src="../../../resources/testdriver-vendor.js"></script>
<script src='../../../fast/forms/resources/picker-common.js'></script>
<input type='color' id='color' value='#3D6600'>
<p id='description' style='opacity: 0'></p>
<div id='console' style='opacity: 0'></div>
<script src='color-picker-appearance-no-movement-helper.js'></script>
<script>
let descriptionContainer = document.getElementById('description');
openPickerDeprecatedJsTest(document.getElementById('color'), openPickerCallback, openPickerCallback);
function openPickerCallback() {
if (internals.pagePopupWindow) {
descriptionContainer.append('Popup opened.', document.createElement('br'));
internals.pagePopupWindow.focus();
const popupDocument = internals.pagePopupWindow.document;
const colorWell = popupDocument.querySelector('color-well');
const colorWellRect = colorWell.getBoundingClientRect();
const colorWellSelectionRing = popupDocument.querySelector('color-well > color-selection-ring');
eventSender.mouseMoveTo(colorWellRect.right - 1, colorWellRect.top + (colorWellRect.height / 2));
eventSender.mouseDown();
eventSender.mouseUp();
let colorWellSelectionRingCurrentLeft = colorWellSelectionRing.left;
let colorWellSelectionRingCurrentTop = colorWellSelectionRing.top;
eventSender.keyDown('ArrowRight');
logKeyboardMovementResult(descriptionContainer, 'ArrowRight', 'color well', colorWellSelectionRing,
colorWellSelectionRingCurrentLeft, colorWellSelectionRingCurrentTop);
colorWellSelectionRingCurrentLeft = colorWellSelectionRing.left;
colorWellSelectionRingCurrentTop = colorWellSelectionRing.top;
eventSender.keyDown('ArrowRight', ['ctrlKey']);
logKeyboardMovementResult(descriptionContainer, 'ctrlKey+ArrowRight', 'color well', colorWellSelectionRing,
colorWellSelectionRingCurrentLeft, colorWellSelectionRingCurrentTop);
} else {
descriptionContainer.append('Popup did not open.', document.createElement('br'));
}
descriptionContainer.append('TEST COMPLETE');
testRunner.notifyDone();
}
function isColorWellSelectionRingAtSamePosition(colorWellSelectionRing,
colorWellSelectionRingOriginalLeft, colorWellSelectionRingOriginalTop) {
return (colorWellSelectionRingOriginalLeft === colorWellSelectionRing.left) &&
(colorWellSelectionRingOriginalTop === colorWellSelectionRing.top);
}
</script>