summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/forms/label/label-assertion-with-active-style.html
blob: 9e70e414b1726d64f37b202a4c219e2ef828e949 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<script src="../resources/common.js"></script>
<script src="../../../resources/js-test.js"></script>
<style>
input:active {
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}
</style>
<input id="show-home-button">
<label for="show-home-button">Show Home Button</label>
<script>
clickElement(document.querySelector('label'));
testPassed('if not crashed.');
</script>