blob: 00316faaba8f9c57ddea343b5b4743849537a028 [file] [log] [blame]
<!DOCTYPE html>
<style>
div {
margin: 50px;
outline-width: 10px;
outline-style: solid;
width: 100px;
height: 100px;
}
</style>
<div id="fixedColor" style="outline-color: blue"></div>
<div id="currentColor" style="outline-color: currentColor"></div>
<script src="../resources/text-based-repaint.js"></script>
<script>
function repaintTest() {
fixedColor.style.color = 'green';
currentColor.style.color = 'green';
}
onload = runRepaintAndPixelTest;
</script>