/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ "use strict"; addPdfOutlineTest( "testBasic", `

p

1.

p

2.

2.1.

2.1.1.

p

2.2

3.

x

h4 skipping h3

p

`, [ { title: "1.", items: [] }, { title: "2.", items: [ { title: "2.1.", items: [{ title: "2.1.1.", items: [] }], }, { title: "2.2", items: [] }, ], }, { title: "3.", items: [ { title: "3.1.", items: [{ title: "h4 skipping h3", items: [] }] }, ], }, ], { chrome: true, topLevel: true } ); addPdfOutlineTest( "testIframeWithSurroundingContent", `

1.

2.

`, [ { title: "1.", items: [{ title: "1.1.", items: [] }] }, { title: "2.", items: [] }, ] );