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

Unified Diff: third_party/WebKit/Source/core/html/HTMLProgressElement.cpp

Issue 1956293002: Count usage of PROGRESS element with -webkit-appearance:none. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 | « third_party/WebKit/Source/core/frame/UseCounter.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/html/HTMLProgressElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLProgressElement.cpp b/third_party/WebKit/Source/core/html/HTMLProgressElement.cpp
index 1b6f5d5686b4ab61741a2a69205ff17b2fdbf6aa..2126672e2d69e065443ebb79b309ba0ddb5da6c3 100644
--- a/third_party/WebKit/Source/core/html/HTMLProgressElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLProgressElement.cpp
@@ -58,8 +58,11 @@ HTMLProgressElement* HTMLProgressElement::create(Document& document)
LayoutObject* HTMLProgressElement::createLayoutObject(const ComputedStyle& style)
{
- if (!style.hasAppearance() || openShadowRoot())
+ if (!style.hasAppearance()) {
+ UseCounter::count(document(), UseCounter::ProgressElementWithNoneAppearance);
return LayoutObject::createObject(this, style);
+ }
+ UseCounter::count(document(), UseCounter::ProgressElementWithProgressBarAppearance);
return new LayoutProgress(this);
}
« no previous file with comments | « third_party/WebKit/Source/core/frame/UseCounter.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698