Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / elements-invalidate-on-form-attribute-invalidation-expected.txt
blob9a655cfd71f54cee2dd5bea345abcfb1cde9f297
1 Tests form.elements is invalidated when input element's form attribute is changed.
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
6 collection = document.getElementById('someForm').elements;
7 PASS collection.length is 1
8 PASS collection.length; input.setAttribute('form', 'otherForm'); collection.length is 0
9 PASS collection.length; input.setAttribute('form', 'someForm'); collection.length is 1
10 PASS successfullyParsed is true
12 TEST COMPLETE