Changeset 124419 in webkit
- Timestamp:
- Aug 2, 2012, 1:17:13 AM (13 years ago)
- Location:
- trunk/LayoutTests
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r124418 r124419 1 2012-08-02 Yoshifumi Inoue <yosin@chromium.org> 2 3 Layout Test fast/forms/input-widths.html is failing 4 https://bugs.webkit.org/show_bug.cgi?id=92863 5 6 Reviewed by Kent Tamura. 7 8 This patch removes test cases for "date", "datetime", "datetime-local", 9 "month", "time" and "week" input types from fast/forms/input-widths.html 10 and updates its expectation, because these test cases aren't reasonable 11 any more. 12 13 This patch also removes test sample of input type "color". 14 15 After r124314, All chromium ports, except for Android, input type 16 "time" uses "monospace" font which makes input field wider. 17 18 * fast/forms/input-widths-expected.txt: Removed expectation of "date", "datetime", "datetime-local", 19 "month", "time" and "week" input types. 20 * fast/forms/input-widths.html: Removed test cases for "date", "datetime", "datetime-local", 21 "month", "time" and "week" input types, and a test sample for "color". 22 * platform/chromium/TestExpectations: Removed disabling line of fast/forms/input-widths.html 23 1 24 2012-08-02 Peter Kasting <pkasting@google.com> 2 25 -
trunk/LayoutTests/fast/forms/input-widths-expected.txt
r87274 r124419 6 6 PASS document.getElementById("tel").offsetWidth is baseWidth 7 7 PASS document.getElementById("url").offsetWidth is baseWidth 8 PASS document.getElementById("date").offsetWidth is baseWidth9 PASS document.getElementById("datetime").offsetWidth is baseWidth10 PASS document.getElementById("datetimelocal").offsetWidth is baseWidth11 PASS document.getElementById("month").offsetWidth is baseWidth12 PASS document.getElementById("time").offsetWidth is baseWidth13 PASS document.getElementById("week").offsetWidth is baseWidth14 8 PASS successfullyParsed is true 15 9 -
trunk/LayoutTests/fast/forms/input-widths.html
r98407 r124419 16 16 <input type=tel id=tel> 17 17 <input type=url id=url> 18 19 <input type=color id=color>20 <input type=date id=date>21 <input type=datetime id=datetime>22 <input type=datetime-local id=datetimelocal>23 <input type=month id=month>24 <input type=time id=time>25 <input type=week id=week>26 18 </div> 27 19 … … 37 29 // type=search is not tested intentionally. 38 30 39 // The folloiwng types should be removed when dedicated UIs are implemented.40 shouldBe('document.getElementById("date").offsetWidth', 'baseWidth');41 shouldBe('document.getElementById("datetime").offsetWidth', 'baseWidth');42 shouldBe('document.getElementById("datetimelocal").offsetWidth', 'baseWidth');43 shouldBe('document.getElementById("month").offsetWidth', 'baseWidth');44 shouldBe('document.getElementById("time").offsetWidth', 'baseWidth');45 shouldBe('document.getElementById("week").offsetWidth', 'baseWidth');46 47 31 document.getElementById('parent').innerHTML = ''; 48 32 </script> -
trunk/LayoutTests/platform/chromium/TestExpectations
r124418 r124419 3508 3508 BUGWK92852 LINUX DEBUG : media/video-currentTime-set2.html = PASS CRASH 3509 3509 3510 // Started failing after http://trac.webkit.org/changeset/1243143511 BUGWK92863 : fast/forms/input-widths.html = TEXT3512 3513 3510 BUGWK92938 : compositing/layer-creation/animation-overlap-with-children.html = TEXT PASS 3514 3511
Note:
See TracChangeset
for help on using the changeset viewer.