| Index: third_party/WebKit/LayoutTests/fast/dom/wrapper-classes.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/dom/wrapper-classes.html b/third_party/WebKit/LayoutTests/fast/dom/wrapper-classes.html
|
| index de6c6a5f41817cd1b0263f18fafaebe14fcf03b4..61e3fde26b478635281e458549eb866f1cfaf991 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/dom/wrapper-classes.html
|
| +++ b/third_party/WebKit/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);
|
|
|