| 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;
|
| +})()
|
|
|