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

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: Changed names to distillable 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..6bdef02e94922c32ff287f0cec6aca3c4eea0568
--- /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() {
Yaron 2014/08/12 20:48:59 Why did you remove the closure wrap? It's no longe
smaslo 2014/08/12 20:58:15 Done.
+ 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