-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathpagebreaks.html
More file actions
60 lines (56 loc) · 1.63 KB
/
pagebreaks.html
File metadata and controls
60 lines (56 loc) · 1.63 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<link rel="stylesheet" href="/node_modules/@brightspace-ui/core/components/demo/styles.css" type="text/css">
<script type="module">
import '@brightspace-ui/core/components/demo/demo-page.js';
import '../test/util/test-harness.js';
</script>
</head>
<body unresolved>
<d2l-demo-page page-title="html2pdf.js - Pagebreaks">
<h2>Pagebreaks: legacy</h2>
<d2l-demo-snippet>
<template>
<test-harness
controls
file="pagebreaks"
settings="pagebreakLegacy"
></test-harness>
</template>
</d2l-demo-snippet>
<h2>Pagebreaks: CSS</h2>
<d2l-demo-snippet>
<template>
<test-harness
controls
file="pagebreaks"
settings="pagebreakCss"
></test-harness>
</template>
</d2l-demo-snippet>
<h2>Pagebreaks: avoid-all</h2>
<d2l-demo-snippet>
<template>
<test-harness
controls
file="pagebreaks"
settings="pagebreakAvoidAll"
></test-harness>
</template>
</d2l-demo-snippet>
<h2>Pagebreaks: specify</h2>
<d2l-demo-snippet>
<template>
<test-harness
controls
file="pagebreaks"
settings="pagebreakSpecify"
></test-harness>
</template>
</d2l-demo-snippet>
</d2l-demo-page>
</body>
</html>