Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(731)

Unified Diff: Source/core/frame/UseCounter.cpp

Issue 421263002: Deprecate the hspace/vspace attributes on table (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: update test Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « LayoutTests/tables/mozilla/bugs/bug1261-expected.txt ('k') | Source/core/html/HTMLTableElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/UseCounter.cpp
diff --git a/Source/core/frame/UseCounter.cpp b/Source/core/frame/UseCounter.cpp
index bf71ea3f018a47bdaf8c808d7ca5ee3bcfbe2ba0..19130d8e90260476ca791d431c77dc000baa39d1 100644
--- a/Source/core/frame/UseCounter.cpp
+++ b/Source/core/frame/UseCounter.cpp
@@ -745,6 +745,12 @@ String UseCounter::deprecationMessage(Feature feature)
case WebSocketURL:
return "'WebSocket.URL' is deprecated. Please use 'WebSocket.url' instead.";
+ case HTMLTableElementVspace:
+ return "The 'vspace' attribute on table is deprecated. Please use CSS instead.";
+
+ case HTMLTableElementHspace:
+ return "The 'hspace' attribute on table is deprecated. Please use CSS instead.";
+
// Features that aren't deprecated don't have a deprecation message.
default:
return String();
« no previous file with comments | « LayoutTests/tables/mozilla/bugs/bug1261-expected.txt ('k') | Source/core/html/HTMLTableElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698