| Index: LayoutTests/fast/dom/wrapper-classes.html
|
| diff --git a/LayoutTests/fast/dom/wrapper-classes.html b/LayoutTests/fast/dom/wrapper-classes.html
|
| index 29edcc0106c2e0d1234f924ec4f623366ad2a2c7..a9d38e6e17c13cad125dd7ef976424a0462b25d9 100644
|
| --- a/LayoutTests/fast/dom/wrapper-classes.html
|
| +++ b/LayoutTests/fast/dom/wrapper-classes.html
|
| @@ -43,8 +43,9 @@ function tagConstructorName(tagName)
|
|
|
| function testTag(tagName, className, prototypeName, constructorName)
|
| {
|
| + // TODO(jsbell): Willful violation: https://www.w3.org/Bugs/Public/show_bug.cgi?id=28244
|
| if (!prototypeName)
|
| - prototypeName = className + "Prototype";
|
| + prototypeName = className;
|
| if (!constructorName)
|
| constructorName = className;
|
| shouldBeEqualToString("tagClassString('" + tagName + "')", className);
|
| @@ -55,8 +56,9 @@ function testTag(tagName, className, prototypeName, constructorName)
|
|
|
| function test(expression, className, prototypeName, constructorName)
|
| {
|
| + // TODO(jsbell): Willful violation: https://www.w3.org/Bugs/Public/show_bug.cgi?id=28244
|
| if (!prototypeName)
|
| - prototypeName = className + "Prototype";
|
| + prototypeName = className;
|
| if (!constructorName)
|
| constructorName = className;
|
| shouldBeEqualToString("classString(" + expression + ")", className);
|
|
|