Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / textfield-overflow-by-value-update.html
blobae035843812378d0f8e26cb7fc5c0aca9b702b79
1 <!DOCTYPE html>
2 <head>
3 <script src="resources/common.js"></script>
4 <style>
5 input {
6 -webkit-appearance: none;
7 font-size: 32px;
8 height: 0px;
9 width: 100px;
10 border-width: 0px;
12 </style>
13 <body>
14 <!-- The input value must not be shown outside the input border.
15 So, the test result should be just white. -->
16 <input id="textfield">
17 <script>
18 $('textfield').offsetTop;
19 $('textfield').value = "FAIL";
20 </script>
21 </body>