Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(524)

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/input-height.html

Issue 2478483003: Ignore the percentage value to calculate the logical height of input control
Patch Set: ignore the percentage height Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
tkent 2017/01/19 02:13:03 I recommend to make this a reference test, not a p
joone 2017/01/23 01:07:08 Done.
2 <html>
3 <head>
4 <style type="text/css">
5 :root {
6 --input-height: 100%;
7 }
8
9 body {
10 background-color: gray;
11 }
12
13 #component-search {
14 background-color: blue;
15 height: 32px;
16 width: 175px;
17 }
18 #component-search input.query {
19 background: yellow;
20 border: none;
21 float: left;
22 height: var(--input-height);
23 line-height: 24px;
24 padding: 0 0 0 5px;
25 width: 143px;
26 }
27 </style>
28
29 <title>input caret size by cubix</title>
tkent 2017/01/19 02:13:03 Now caret size is not a problem.
joone 2017/01/23 01:07:08 Done.
30 </head>
31
32 <body>
33 <div id="component-search" class="header-component">
34 <form action="http://cbslocal.com/search/" class="search">
35 <input type="text" class="query" name="q" id="s" size="31" placeholder="Sea rch" autocomplete="off" style="color: black;">
36 <input type="reset" class="reset" value="Reset">
37 <input type="submit" class="submit" value="Search">
38 </form>
39 </div>
40 <br><br>
41 <div id="component-search" class="header-component">
tkent 2017/01/19 02:13:03 ID attribute value 'component-search' conflicts wi
joone 2017/01/23 01:07:08 Done.
42 <form action="http://cbslocal.com/search/" class="search">
43 <input type="text" class="query" name="q" id="s" size="31" placeholder="Sea rch" autocomplete="off" style="color: black; height: 30%">
tkent 2017/01/19 02:13:03 ID attribute value 's' conflicts with other elemen
joone 2017/01/23 01:07:08 Done.
44 <input type="reset" class="reset" value="Reset">
45 <input type="submit" class="submit" value="Search">
46 </form>
47 </div>
48 <br>
49 <div id="component-search" class="header-component">
50 <form action="http://cbslocal.com/search/" class="search">
51 <input type="text" class="query" name="q" id="s" size="31" placeholder="Sea rch" autocomplete="off" style="color: black; height: 9.6px">
52 <input type="reset" class="reset" value="Reset">
53 <input type="submit" class="submit" value="Search">
54 </form>
55 </div>
56
57 </body>
58 </html>
59
tkent 2017/01/19 02:13:03 unnecessary blank lines.
joone 2017/01/23 01:07:08 Done.
60
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698