upload webkit/tizen 2.0_beta source.
[framework/web/webkit-efl.git] / LayoutTests / fast / speech / intrinsic-input-width-with-speech-border-padding.html
1 <!DOCTYPE html>
2 <style>
3 input::-webkit-input-speech-button {
4     border: 10px solid lime;
5     padding: 10px;
6 }
7 </style>
8 <body>
9 <script src="../js/resources/js-test-pre.js"></script>
10
11 <input id="input1">
12 <input x-webkit-speech id="speechInput1">
13 <script>
14 shouldBe('document.getElementById("speechInput1").offsetWidth', 'document.getElementById("input1").offsetWidth');
15 </script>
16
17 <script src="../js/resources/js-test-post.js"></script>
18 </body>