Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / label / labels-owner-node-adopted-expected.txt
blobf95484ead26ad09ba130ec40423a4fe663867f4d
1 This tests moving a node with labels property from one document to another. The labels node list should be updated when labels are modified in the new document.
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
6 The input element initially have two label elements #label1 and #label2.
7 PASS labels = input.labels; labels.length is 2
8 PASS label0 = labels[0]; label1 = labels[1]; iframe.contentDocument.body.appendChild(form); labels.length; label1.parentNode.removeChild(label1); labels.length is 1
9 PASS labels[0] is label0
10 PASS label0.parentNode.appendChild(label1); labels.length is 2
11 PASS labels[0] is label0
12 PASS labels[1] is label1
13 PASS successfullyParsed is true
15 TEST COMPLETE