Auto merge of #5761 - dhananjay92:Issue#5754, r=jdm

Solves Issue #5754.

<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/5761)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2015-04-21 12:25:42 -05:00
commit c8cb62058c

View file

@ -183,7 +183,10 @@
}, "implementation.createDocumentType");
test(function() {
// FIXME: https://github.com/mozilla/servo/issues/1509
var doc = document.implementation.createDocument(null, null);
var copy = doc.cloneNode();
check_copy(doc, copy, Document);
assert_equals(doc.contentType, copy.contentType);
}, "implementation.createDocument");
test(function() {