summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/plugins/script-tests/navigator-plugins.js
blob: b6049691e2f53027d29b86c2ec1985ecf867d3d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
description(
    "Check that navigator.plugins does not contain empty plugin objects"
);

var hasInvalidPlugin = false;
for (var i = 0; i < navigator.plugins.length; ++i) {
    var plugin = navigator.plugins[i];
    if (!plugin.description || !plugin.name || !plugin.filename) {
        hasInvalidPlugin = true;
        break;
    }
}
shouldBeFalse("hasInvalidPlugin");

successfullyParsed = true;