layout/reftests/mathml/table-width-3.html

Tue, 06 Jan 2015 21:39:09 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Tue, 06 Jan 2015 21:39:09 +0100
branch
TOR_BUG_9701
changeset 8
97036ab72558
permissions
-rw-r--r--

Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.

michael@0 1 <!doctype>
michael@0 2 <html>
michael@0 3 <head>
michael@0 4 <title>table-width-3</title>
michael@0 5 <meta charset="utf-8"/>
michael@0 6 <style type="text/css">
michael@0 7 html { background-color: grey; }
michael@0 8 td { border: 1px solid white;
michael@0 9 padding-top: 0;
michael@0 10 padding-bottom: 0;
michael@0 11 padding-right: 1px;
michael@0 12 padding-left: 1px;
michael@0 13 background-color: black;
michael@0 14 color: black; }
michael@0 15 mi, mtext { font-size: 3em; }
michael@0 16 span { font-style: italic; display: inline-block; }
michael@0 17 </style>
michael@0 18 </head>
michael@0 19 <body>
michael@0 20
michael@0 21 <table>
michael@0 22 <tr>
michael@0 23 <td>
michael@0 24 <math>
michael@0 25 <mi>f</mi>
michael@0 26 </math>
michael@0 27 </td>
michael@0 28 </tr>
michael@0 29 </table>
michael@0 30 <table>
michael@0 31 <tr>
michael@0 32 <td>
michael@0 33 <math>
michael@0 34 <mi> f </mi>
michael@0 35 </math>
michael@0 36 </td>
michael@0 37 </tr>
michael@0 38 </table>
michael@0 39 <table>
michael@0 40 <tr>
michael@0 41 <td>
michael@0 42 <math>
michael@0 43 <mi>f</mi>
michael@0 44 <mi>f</mi>
michael@0 45 <mi>f</mi>
michael@0 46 </math>
michael@0 47 </td>
michael@0 48 </tr>
michael@0 49 </table>
michael@0 50 <table>
michael@0 51 <tr>
michael@0 52 <td>
michael@0 53 <math>
michael@0 54 <mi style="font-style: italic;">fff</mi>
michael@0 55 </math>
michael@0 56 </td>
michael@0 57 </tr>
michael@0 58 </table>
michael@0 59 <table>
michael@0 60 <tr>
michael@0 61 <td>
michael@0 62 <math>
michael@0 63 <mtext><span>fff</span></mtext>
michael@0 64 </math>
michael@0 65 </td>
michael@0 66 </tr>
michael@0 67 </table>
michael@0 68 <table>
michael@0 69 <tr>
michael@0 70 <td>
michael@0 71 <math>
michael@0 72 <mtext><span>f</span></mtext>
michael@0 73 <mtext><span>f</span></mtext>
michael@0 74 <mtext><span>f</span></mtext>
michael@0 75 </math>
michael@0 76 </td>
michael@0 77 </tr>
michael@0 78 </table>
michael@0 79 <table>
michael@0 80 <tr>
michael@0 81 <td>
michael@0 82 <math>
michael@0 83 <mtext><span>f</span><span>f</span><span>f</span></mtext>
michael@0 84 </math>
michael@0 85 </td>
michael@0 86 </tr>
michael@0 87 </table>
michael@0 88
michael@0 89 </body>
michael@0 90 </html>

mercurial