2008-11-04 Anders Carlsson <andersca@apple.com>
[webkit/qt.git] / LayoutTests / fast / dom / setAttribute-using-initial-input-value-expected.txt
blob0b6d2b9bfb7273debee953e57ce7a01d615d604e
1 This test checks that an attribute is not removed when set to the initial value of an <input> tag using setAttribute(). If the test passes, you will see a list of PASS lines below, followed by TEST COMPLETE. See Bugzilla Bug 4059 Some values used with setAttribute() cause the attribute to be removed (null strings vs. empty strings).
3 PASS elem.value is ''
5 Before calling setAttribute("startval", elem.value):
7 PASS elem.getAttribute('startval') is ''
9 After calling setAttribute("startval", elem.value):
11 PASS elem.getAttribute('startval') is ''
13 Before calling setAttribute("style", elem.value):
15 PASS elem.getAttribute('style') is ''
17 After calling setAttribute("style", elem.value):
19 PASS elem.getAttribute('style') is ''
21 PASS successfullyParsed is true
23 TEST COMPLETE