| Index: LayoutTests/fast/dom/wrapper-classes.html
|
| diff --git a/LayoutTests/fast/dom/wrapper-classes.html b/LayoutTests/fast/dom/wrapper-classes.html
|
| index 84d6eb79974cb3f927e9d070d09df8f5d00a31ea..b7c5ec38996fa1e2a55f94fccfb1a5d6b518ff8f 100644
|
| --- a/LayoutTests/fast/dom/wrapper-classes.html
|
| +++ b/LayoutTests/fast/dom/wrapper-classes.html
|
| @@ -76,7 +76,7 @@ function runTest()
|
| debug('Basics');
|
| debug('');
|
|
|
| - test("document.createAttribute()", "Attr");
|
| + test("document.createAttribute('x')", "Attr");
|
| test("document.createComment('')", "Comment");
|
| test("document.createDocumentFragment()", "DocumentFragment");
|
| test("document.implementation", "DOMImplementation");
|
| @@ -92,7 +92,7 @@ function runTest()
|
| debug('');
|
|
|
| test("xmlDocument", "XMLDocument");
|
| - test("xmlDocument.createCDATASection()", "CDATASection");
|
| + test("xmlDocument.createCDATASection('')", "CDATASection");
|
| test("xmlDocument.createElementNS('x', 'x', 'x')", "Element");
|
| test("xmlDocument.createProcessingInstruction('x', '')", "ProcessingInstruction");
|
|
|
|
|