-
Notifications
You must be signed in to change notification settings - Fork 3.3k
/
Copy pathfirefox-bug-1901624-crash.html
47 lines (46 loc) · 1.07 KB
/
firefox-bug-1901624-crash.html
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
<!DOCTYPE html>
<html lang="en-us">
<head>
<style>
:root {
--sidebar-width: 370px;
}
*,
::after,
::before {
box-sizing: inherit;
}
#sidebar {
max-width: var(--sidebar-width);
}
#codebox pre {
white-space: pre-wrap;
}
#codebox pre .copy-btn-displacement {
float: right;
height: 40px;
width: 40px;
}
#codebox #codebox-answer li {
hyphens: auto;
}
html {
font-size: 20px;
box-sizing: border-box;
}
</style>
</head>
<body>
<aside id="sidebar">
<div id="codebox">
<div id="codebox-answer">
<ol>
<li>
<pre><code><div class="copy-btn-displacement"></div><span class="token function">add_definitions</span><span class="token punctuation">d</span><span class="token punctuation">.</span><span class="token constant">GCC_COVERAGE_COMPILE_FLAGS</span></code></pre>
</li>
</ol>
</div>
</div>
</aside>
</body>
</html>