layout/reftests/mathml/displaystyle-3-ref.html

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

michael@0 1 <!doctype html>
michael@0 2 <html>
michael@0 3 <head>
michael@0 4 <title>displaystyle</title>
michael@0 5 <meta charset="utf-8"/>
michael@0 6 </head>
michael@0 7 <body>
michael@0 8
michael@0 9 <!-- Test dynamic change of displaystyle -->
michael@0 10 <math id="m1" displaystyle="true">
michael@0 11 <munder><mo>O</mo><mo>O</mo></munder>
michael@0 12 <mfrac><mi>x</mi><mi>y</mi></mfrac>
michael@0 13 </math>
michael@0 14 <math>
michael@0 15 <mstyle id="m2" displaystyle="true">
michael@0 16 <munder><mo>O</mo><mo>O</mo></munder>
michael@0 17 <mfrac><mi>x</mi><mi>y</mi></mfrac>
michael@0 18 </mstyle>
michael@0 19 </math>
michael@0 20 <math>
michael@0 21 <mtable id="m3" displaystyle="true">
michael@0 22 <mtr>
michael@0 23 <mtd>
michael@0 24 <munder><mo>O</mo><mo>O</mo></munder>
michael@0 25 <mfrac><mi>x</mi><mi>y</mi></mfrac>
michael@0 26 </mtd>
michael@0 27 </mtr>
michael@0 28 </mtable>
michael@0 29 </math>
michael@0 30 <math id="m4" displaystyle="false">
michael@0 31 <msub><mo>O</mo><mo>O</mo></msub>
michael@0 32 <mfrac><mi>x</mi><mi>y</mi></mfrac>
michael@0 33 </math>
michael@0 34 <math>
michael@0 35 <mstyle id="m5" displaystyle="false">
michael@0 36 <msub><mo>O</mo><mo>O</mo></msub>
michael@0 37 <mfrac><mi>x</mi><mi>y</mi></mfrac>
michael@0 38 </mstyle>
michael@0 39 </math>
michael@0 40 <math>
michael@0 41 <mtable id="m6" displaystyle="false">
michael@0 42 <mtr>
michael@0 43 <mtd>
michael@0 44 <msub><mo>O</mo><mo>O</mo></msub>
michael@0 45 <mfrac><mi>x</mi><mi>y</mi></mfrac>
michael@0 46 </mtd>
michael@0 47 </mtr>
michael@0 48 </mtable>
michael@0 49 </math>
michael@0 50
michael@0 51 </body>
michael@0 52 </html>

mercurial