Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / HTMLImageElement / image-src-absolute-url-expected.txt
blob267f3b913c6f465fbd2877a3e1cbd51ea0e4da13
1 This page preloads 2 images in an onLoad function.
2 The image object.src is expected to be the full path to the image, relative to the document base.
3 To match WinIE (but not FireFox), we resolve the image path in the getter, rather than the setter, allowing for pages to change the Document base URL via javascript and have object.src reflect said change.
5 SUCCESS (document.images[0].src = file:///does/not/exist/test.jpg)
6 SUCCESS (IconImages['grey'].src = file:///does/not/exist/test.jpg)
7 After changing the base URL:
9 SUCCESS (document.images[0].src = file:///does/not/exist/test.jpg)
10 SUCCESS (IconImages['grey'].src = file:///also/does/not/exist/test.jpg)