summaryrefslogtreecommitdiffstats
path: root/dom/manifest/test/test_ManifestProcessor_icons.html
blob: 578f49f5dc4a55e48ccc4d6c313205031bc75367 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1079453
-->
<head>
  <meta charset="utf-8">
  <title>Test for Bug 1079453</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
  <script src="common.js"></script>
  <script>
/**
 * Manifest icons member
 * https://w3c.github.io/manifest/#icons-member
 **/

"use strict";

typeTests.forEach((type) => {
  var expected = `Expect non-array icons to be empty array: ${typeof type}.`;
  data.jsonText = JSON.stringify({
    icons: type,
  });
  var result = processor.process(data);
  SpecialPowers.unwrap(result.icons);
  is(result.icons.length, 0, expected);
});
  </script>
</head>