mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-25 09:57:32 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
30
dom/manifest/test/test_ManifestProcessor_icons.html
Normal file
30
dom/manifest/test/test_ManifestProcessor_icons.html
Normal file
|
|
@ -0,0 +1,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 type="application/javascript" 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);
|
||||
var y = SpecialPowers.unwrap(result.icons);
|
||||
is(result.icons.length, 0, expected);
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
Loading…
Add table
Add a link
Reference in a new issue