summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/speech/speech-style-on-non-speech-elements.html
blob: 8a151d5e2e570531cc4eb67118bda547a94bc3a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<script src="../js/resources/js-test-pre.js"></script>
<style>
.speechButton {
  -webkit-appearance: -webkit-input-speech-button;
}
</style>
</head>
<body>

<!-- Test a few HTML elements with the speech button style to check that they don't result in a crash. -->
<div class='speechButton'>Test</div>
<p class='speechButton'>Test</p>
<span class='speechButton'>Test</span>
<button class='speechButton'>Test</button>

<script type="text/javascript">
description('Test for speech button style applied on non-input elements.');
</script>

</body>
</html>