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

Unified Diff: components/dom_distiller/core/javascript/is_distillable_trigger.js

Issue 464973002: JavaScript that returns whether or not a page is an article (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Changes to comments and closure wrap Created 6 years, 4 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
Index: components/dom_distiller/core/javascript/is_distillable_trigger.js
diff --git a/components/dom_distiller/core/javascript/is_distillable_trigger.js b/components/dom_distiller/core/javascript/is_distillable_trigger.js
new file mode 100644
index 0000000000000000000000000000000000000000..ba0786d0ccf4df06f2c6ea5139328ee46db1b127
--- /dev/null
+++ b/components/dom_distiller/core/javascript/is_distillable_trigger.js
@@ -0,0 +1,21 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+(function() {
+ var elems = document.querySelectorAll(
+ 'meta[property="og:type"],meta[name=\\"og:type\\"]');
+ for (var i in elems) {
+ if (elems[i].content && elems[i].content.toUpperCase() == 'ARTICLE') {
+ return true;
+ }
+ }
+ var elems = document.querySelectorAll(
+ '*[itemtype="http://schema.org/Article"]');
+ for (var i in elems) {
+ if (elems[i].itemscope) {
+ return true;
+ }
+ }
+ return false;
+})()

Powered by Google App Engine
This is Rietveld 408576698