- add third_party src.
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / platform / win / fast / dom / README
1 This file documents why the various tests have been rebaselined.
2
3 prototype-chain-expected.txt
4 --------------------------
5 It is implementation specific. Harmless.
6
7 wrapper-classes
8 --------------------------
9 The printing of prototype objects and constructors is implementation dependent.
10 We print these differently from KJS which is harmless.  Also, we print the 
11 global object differently from KJS. 
12
13 global-constructor.txt
14 --------------------------
15 Node function is implementation specific. In V8 it is a function, and 
16 Node.prototype cannot be deleted. In KJS, Node is an object, and Node.prototype
17 can be deleted.
18
19 undetectable-document-all 
20 -------------------------- 
21 document.all is undectable which means that it behaves like undefined
22 except when accessing properties on the object.  In KJS document.all
23 prints as '[object HTMLCollection]'.  In V8 document.all behaves like
24 undefined also when printed so it prints as 'undefined'.
25
26 xmlhttprequest-get
27 ------------------
28 The only difference is that V8 prints functions slightly differently.