build/pgo/blueprint/elements.html

Sat, 03 Jan 2015 20:18:00 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 03 Jan 2015 20:18:00 +0100
branch
TOR_BUG_3246
changeset 7
129ffea94266
permissions
-rw-r--r--

Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.

michael@0 1 <!-- This Source Code Form is subject to the terms of the Mozilla Public
michael@0 2 - License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 3 - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
michael@0 4
michael@0 5 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
michael@0 6 "http://www.w3.org/TR/html4/strict.dtd">
michael@0 7
michael@0 8 <html lang="en">
michael@0 9 <head>
michael@0 10 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
michael@0 11 <title>Blueprint HTML Elements Tests</title>
michael@0 12
michael@0 13 <!-- Framework CSS -->
michael@0 14 <link rel="stylesheet" href="screen.css" type="text/css" media="screen, projection">
michael@0 15 <link rel="stylesheet" href="print.css" type="text/css" media="print">
michael@0 16 <!--[if IE]><link rel="stylesheet" href="ie.css" type="text/css" media="screen, projection"><![endif]-->
michael@0 17
michael@0 18 </head>
michael@0 19 <body>
michael@0 20
michael@0 21 <div class="container showgrid">
michael@0 22 <h2>Tests for common HTML elements</h2>
michael@0 23 <hr>
michael@0 24
michael@0 25 <h5>PARAGRAPHS <span class="alt">&amp;</span> BOXES</h5>
michael@0 26
michael@0 27 <div class="span-8">
michael@0 28 <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
michael@0 29 <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor <sub>sub text</sub> ut labore et <sup>sup text</sup> magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
michael@0 30 </div>
michael@0 31
michael@0 32 <div class="span-8">
michael@0 33 <p class="small">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
michael@0 34 <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
michael@0 35 <p class="large">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
michael@0 36 </div>
michael@0 37
michael@0 38 <div class="span-8 last">
michael@0 39
michael@0 40 <div class="box">
michael@0 41 <p class="last">Aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
michael@0 42 </div>
michael@0 43 <blockquote>
michael@0 44 <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
michael@0 45 </blockquote>
michael@0 46
michael@0 47 </div>
michael@0 48 <hr>
michael@0 49
michael@0 50 <h5>LISTS</h5>
michael@0 51
michael@0 52 <div class="span-8">
michael@0 53 <ul>
michael@0 54 <li>Unordered list test</li>
michael@0 55 <li>Another list element. Lorem ipsum dolor sit amet, consectetur adipisicing elit.</li>
michael@0 56 <li>Yet another element in the list</li>
michael@0 57 <li>Some long text. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Lorem ipsum dolor sit amet, consectetur adipisicing elit.</li>
michael@0 58 </ul>
michael@0 59 <ol>
michael@0 60 <li>Ordered list test</li>
michael@0 61 <li>Another list element</li>
michael@0 62 <li>Yet another element in the list</li>
michael@0 63 </ol>
michael@0 64 </div>
michael@0 65
michael@0 66 <div class="span-8">
michael@0 67 <ol>
michael@0 68 <li>Ordered list</li>
michael@0 69 <li>Here's a nested unordered list
michael@0 70 <ul>
michael@0 71 <li>Nested Unordered list</li>
michael@0 72 <li>Nested ordered list
michael@0 73 <ol>
michael@0 74 <li>The first</li>
michael@0 75 <li>And the second</li>
michael@0 76 </ol>
michael@0 77 </li>
michael@0 78 </ul>
michael@0 79 </li>
michael@0 80 <li>Ordered List item</li>
michael@0 81 <li>Nested Ordered list
michael@0 82 <ol>
michael@0 83 <li>Some point</li>
michael@0 84 <li>Nested Unordered list
michael@0 85 <ul>
michael@0 86 <li>The first</li>
michael@0 87 <li>And the second</li>
michael@0 88 </ul>
michael@0 89 </li>
michael@0 90 </ol>
michael@0 91 </li>
michael@0 92 </ol>
michael@0 93 </div>
michael@0 94
michael@0 95 <div class="span-8 last">
michael@0 96 <dl>
michael@0 97 <dt>definition list dt</dt>
michael@0 98 <dd>definition list dd</dd>
michael@0 99 <dt>definition list dt</dt>
michael@0 100 <dd>definition list dd</dd>
michael@0 101 <dt>Lorem ipsum dolor sit amet, consectetur adipisicing elit adipisicing elit adipisicing elit</dt>
michael@0 102 <dd>Lorem ipsum dolor sit amet, consectetur adipisicing elit adipisicing elit adipisicing elit</dd>
michael@0 103 <dt>Lorem ipsum dolor sit amet, consectetur adipisicing elit adipisicing elit adipisicing elit</dt>
michael@0 104 <dd>Lorem ipsum dolor sit amet, consectetur adipisicing elit adipisicing elit adipisicing elit</dd>
michael@0 105 </dl>
michael@0 106 </div>
michael@0 107 <hr>
michael@0 108
michael@0 109 <h5>HEADINGS</h5>
michael@0 110
michael@0 111 <div class="span-8">
michael@0 112 <h1>H1: Lorem ipsum dolor sit amet</h1>
michael@0 113 <h2>H2: Lorem ipsum dolor sit amet, consectetur elit</h2>
michael@0 114 <h3>H3: Lorem ipsum dolor sit amet, consectetur adipisicing elit</h3>
michael@0 115 <h4>H4: Lorem ipsum dolor sit amet, consectetur adipisicing elit adipis</h4>
michael@0 116 <h5>H5: Lorem ipsum dolor sit amet, consectetur adipisicing elit adipisicing elit adipisicing elit</h5>
michael@0 117 <h6>H6: Lorem ipsum dolor sit amet, consectetur adipisicing elit adipisicing elit adipisicing elit</h6>
michael@0 118 </div>
michael@0 119
michael@0 120 <div class="span-8">
michael@0 121 <h1>Heading 1</h1><hr>
michael@0 122 <h2>Heading 2</h2><hr>
michael@0 123 <h3>Heading 3</h3><hr>
michael@0 124 <h4>Heading 4</h4><hr>
michael@0 125 <h5>Heading 5</h5><hr>
michael@0 126 <h6>Heading 6</h6>
michael@0 127 </div>
michael@0 128
michael@0 129 <div class="span-8 last">
michael@0 130 <h1>Heading 1</h1>
michael@0 131 <h2>Heading 2</h2>
michael@0 132 <h3>Heading 3</h3>
michael@0 133 <h4>Heading 4</h4>
michael@0 134 <h5>Heading 5</h5>
michael@0 135 <h6>Heading 6</h6>
michael@0 136 </div>
michael@0 137 <hr>
michael@0 138
michael@0 139 <h5>MISC ELEMENTS</h5>
michael@0 140
michael@0 141 <div class="span-8">
michael@0 142 <p>
michael@0 143 <strong>&lt;strong&gt;</strong><br>
michael@0 144 <del>&lt;del&gt; deleted</del><br>
michael@0 145 <dfn>&lt;dfn&gt; dfn</dfn><br>
michael@0 146 <em>&lt;em&gt; emphasis</em>
michael@0 147 </p>
michael@0 148 <p>
michael@0 149 <a>&lt;a&gt; anchor</a><br>
michael@0 150 <a href="http://www.google.com">&lt;a&gt; a + href</a>
michael@0 151 </p>
michael@0 152 <p>
michael@0 153 <abbr title="extended abbr text should show when mouse over">&lt;abbr&gt; abbr - extended text when mouseover.</abbr><br>
michael@0 154 <acronym title="extended acronym text should show when mouse over">&lt;acronym&gt; acronym - extended text when mouseover.</acronym>
michael@0 155 </p>
michael@0 156 <address>
michael@0 157 &lt;address&gt;<br>
michael@0 158 Donald Duck<br>
michael@0 159 Box 555<br>
michael@0 160 Disneyland
michael@0 161 </address>
michael@0 162 <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore dolore.</p>
michael@0 163 </div>
michael@0 164
michael@0 165 <div class="span-8">
michael@0 166 <table summary="This is the summary text for this table." border="0" cellspacing="0" cellpadding="0">
michael@0 167 <caption><em>A standard test table with a caption, tr, td elements</em></caption>
michael@0 168 <tr>
michael@0 169 <th class="span-4">Table Header One</th>
michael@0 170 <th class="span-4 last">Table Header Two</th>
michael@0 171 </tr>
michael@0 172 <tr>
michael@0 173 <td>TD One</td>
michael@0 174 <td>TD Two</td>
michael@0 175 </tr>
michael@0 176 <tr>
michael@0 177 <td colspan="2">TD colspan 2</td>
michael@0 178 </tr>
michael@0 179 </table>
michael@0 180
michael@0 181 <table summary="This is the summary text for this table." border="0" cellspacing="0" cellpadding="0">
michael@0 182 <caption><em>A test table with a thead, tfoot, and tbody elements</em></caption>
michael@0 183 <thead>
michael@0 184 <tr>
michael@0 185 <th class="span-4">Table Header One</th>
michael@0 186 <th class="span-4 last">Table Header Two</th>
michael@0 187 </tr>
michael@0 188 </thead>
michael@0 189 <tfoot>
michael@0 190 <tr>
michael@0 191 <td colspan="2">tfoot footer</td>
michael@0 192 </tr>
michael@0 193 </tfoot>
michael@0 194 <tbody>
michael@0 195 <tr>
michael@0 196 <td>TD One</td>
michael@0 197 <td>TD Two</td>
michael@0 198 </tr>
michael@0 199 <tr>
michael@0 200 <td>TD One</td>
michael@0 201 <td>TD Two</td>
michael@0 202 </tr>
michael@0 203 </tbody>
michael@0 204 <tbody>
michael@0 205 <tr>
michael@0 206 <td>TD One</td>
michael@0 207 <td>TD Two</td>
michael@0 208 </tr>
michael@0 209 <tr>
michael@0 210 <td>TD One</td>
michael@0 211 <td>TD Two</td>
michael@0 212 </tr>
michael@0 213 </tbody>
michael@0 214 </table>
michael@0 215 </div>
michael@0 216
michael@0 217 <div class="span-8 last">
michael@0 218
michael@0 219 <pre>&lt;pre&gt;
michael@0 220 pre space1
michael@0 221 pre space1
michael@0 222 pre space2
michael@0 223 pre space2
michael@0 224 pre tab
michael@0 225 pre tab</pre>
michael@0 226
michael@0 227 <code>&lt;code&gt;
michael@0 228 Not indented
michael@0 229 indent1
michael@0 230 indent1
michael@0 231 indent2
michael@0 232 indent3</code>
michael@0 233
michael@0 234 <tt>&lt;tt&gt;
michael@0 235 This tt text should be monospaced
michael@0 236 and
michael@0 237 wrap as if
michael@0 238 one line of text
michael@0 239 even though the code has newlines, spaces, and tabs.
michael@0 240 It should be the same size as &lt;p&gt; text.
michael@0 241 </tt>
michael@0 242 </div>
michael@0 243 <hr>
michael@0 244
michael@0 245 <p><a href="http://validator.w3.org/check?uri=referer">
michael@0 246 <img src="valid.png" alt="Valid HTML 4.01 Strict" height="31" width="88" class="top"></a></p>
michael@0 247
michael@0 248 </div>
michael@0 249 </body>
michael@0 250 </html>

mercurial