| Index: Source/core/html/HTMLTableElement.cpp
|
| diff --git a/Source/core/html/HTMLTableElement.cpp b/Source/core/html/HTMLTableElement.cpp
|
| index 2737ed3d30dc93e6baa3b94d83463a02c5377217..b32ba323aaeffabefe9d1830cdd9d45db19b4348 100644
|
| --- a/Source/core/html/HTMLTableElement.cpp
|
| +++ b/Source/core/html/HTMLTableElement.cpp
|
| @@ -35,7 +35,6 @@
|
| #include "core/dom/Attribute.h"
|
| #include "core/dom/ElementTraversal.h"
|
| #include "core/dom/NodeListsNodeData.h"
|
| -#include "core/frame/UseCounter.h"
|
| #include "core/html/HTMLTableCaptionElement.h"
|
| #include "core/html/HTMLTableCellElement.h"
|
| #include "core/html/HTMLTableRowElement.h"
|
| @@ -309,10 +308,6 @@ void HTMLTableElement::collectStyleForPresentationAttribute(const QualifiedName&
|
| } else if (name == cellspacingAttr) {
|
| if (!value.isEmpty())
|
| addHTMLLengthToStyle(style, CSSPropertyBorderSpacing, value);
|
| - } else if (name == vspaceAttr) {
|
| - UseCounter::countDeprecation(document(), UseCounter::HTMLTableElementVspace);
|
| - } else if (name == hspaceAttr) {
|
| - UseCounter::countDeprecation(document(), UseCounter::HTMLTableElementHspace);
|
| } else if (name == alignAttr) {
|
| if (!value.isEmpty()) {
|
| if (equalIgnoringCase(value, "center")) {
|
|
|