Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / resources / multiple-fields-value-set-empty.js
blob47f5483320bed0b6bfe9406bbee762d8a2e0e602
1 var input;
2 var emptyText;
4 function testSettingEmptyStringClearsSubFields(type) {
5     description('Check if input.value="" clears an input with partially-specified value.');
7     input = document.createElement('input');
8     input.type = type;
9     document.body.appendChild(input);
10     input.focus();
11     emptyText = getUserAgentShadowTextContent(input);
12     if (!window.eventSender)
13         debug('This test needs to be run on DRT/WTR.');
14     else {
15         debug('Empty text: ' + emptyText);
16         shouldNotBe('eventSender.keyDown("upArrow"); getUserAgentShadowTextContent(input)', 'emptyText');
17         shouldBe('input.value = ""; getUserAgentShadowTextContent(input)', 'emptyText');
18         input.remove();
19     }