Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / Range / range-on-detached-node-expected.txt
blobe06dfc8871fe1a481fb676bf6efeede61a2d64aa
1 PASS range.selectNode(sample.firstChild); range.startContainer is sample
2 PASS range.setEndBefore(sample.firstChild); range.startContainer is sample
3 PASS range.setEndAfter(sample.firstChild); range.startContainer is sample
4 PASS range.setStartAfter(sample.firstChild); range.startContainer is sample
5 PASS range.setStartBefore(sample.firstChild); range.startContainer is sample
6 PASS range.selectNode(sample); range.startContainer threw exception InvalidNodeTypeError: Failed to execute 'selectNode' on 'Range': the given Node has no parent..
7 PASS range.setEndAfter(sample); range.startContainer threw exception InvalidNodeTypeError: Failed to execute 'setEndAfter' on 'Range': the given Node has no parent..
8 PASS range.setEndBefore(sample); range.startContainer threw exception InvalidNodeTypeError: Failed to execute 'setEndBefore' on 'Range': the given Node has no parent..
9 PASS range.setStartAfter(sample); range.startContainer threw exception InvalidNodeTypeError: Failed to execute 'setStartAfter' on 'Range': the given Node has no parent..
10 PASS range.setStartBefore(sample); range.startContainer threw exception InvalidNodeTypeError: Failed to execute 'setStartBefore' on 'Range': the given Node has no parent..
11 PASS successfullyParsed is true
13 TEST COMPLETE