| Index: third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/xmlhttprequest-inheritance.html
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/xmlhttprequest-inheritance.html b/third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/xmlhttprequest-inheritance.html
|
| index 3e58fc9c6044efd6b30cf4617bf41fa96af0d75f..bb4dbb6f36e61980a3e5b04971c85bce37944cfc 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/xmlhttprequest-inheritance.html
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/xmlhttprequest-inheritance.html
|
| @@ -15,13 +15,13 @@ function className(obj) {
|
| // XMLHttpRequest.
|
| shouldBeEqualToString("XMLHttpRequest.__proto__.name", "XMLHttpRequestEventTarget");
|
| shouldBeEqualToString("XMLHttpRequest.prototype.__proto__.constructor.name", "XMLHttpRequestEventTarget");
|
| -shouldBeEqualToString("className(XMLHttpRequest.prototype.__proto__)", "XMLHttpRequestEventTargetPrototype");
|
| +shouldBeEqualToString("className(XMLHttpRequest.prototype.__proto__)", "XMLHttpRequestEventTarget");
|
| shouldBe("XMLHttpRequest.prototype.__proto__.__proto__", "EventTarget.prototype");
|
|
|
| // XMLHttpRequestUpload.
|
| shouldBeEqualToString("XMLHttpRequestUpload.__proto__.name", "XMLHttpRequestEventTarget");
|
| shouldBeEqualToString("XMLHttpRequestUpload.prototype.__proto__.constructor.name", "XMLHttpRequestEventTarget");
|
| -shouldBeEqualToString("className(XMLHttpRequestUpload.prototype.__proto__)", "XMLHttpRequestEventTargetPrototype");
|
| +shouldBeEqualToString("className(XMLHttpRequestUpload.prototype.__proto__)", "XMLHttpRequestEventTarget");
|
| shouldBe("XMLHttpRequestUpload.prototype.__proto__.__proto__", "EventTarget.prototype");
|
| </script>
|
| </body>
|
|
|