file_path
stringlengths
3
280
file_language
stringclasses
66 values
content
stringlengths
1
1.04M
repo_name
stringlengths
5
92
repo_stars
int64
0
154k
repo_description
stringlengths
0
402
repo_primary_language
stringclasses
108 values
developer_username
stringlengths
1
25
developer_name
stringlengths
0
30
developer_company
stringlengths
0
82
crates/swc_html_codegen/tests/fixture/document-type/system-single-quote/input.html
HTML
<!DOCTYPE document system 'subjects.dtd'> <html> <head><title>Test</title></head> <body><div>Test</div></body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/document-type/system-single-quote/output.html
HTML
<!DOCTYPE document SYSTEM "subjects.dtd"> <html> <head><title>Test</title></head> <body><div>Test</div> </body></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/document-type/system-single-quote/output.min.html
HTML
<!doctype document system "subjects.dtd"><title>Test</title></head> <div>Test</div>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/document-type/system-uppercase/input.html
HTML
<!DOCTYPE document SYSTEM "subjects.dtd"> <html> <head><title>Test</title></head> <body><div>Test</div></body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/document-type/system-uppercase/output.html
HTML
<!DOCTYPE document SYSTEM "subjects.dtd"> <html> <head><title>Test</title></head> <body><div>Test</div> </body></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/document-type/system-uppercase/output.min.html
HTML
<!doctype document system "subjects.dtd"><title>Test</title></head> <div>Test</div>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/document/input.html
HTML
<!DOCTYPE html> <html> <body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/document/output.html
HTML
<!DOCTYPE html> <html> <head></head><body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/document/output.min.html
HTML
<!doctype html><body> <h1>My First Heading</h1> <p>My first paragraph.</p>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/element/textarea/input.html
HTML
<!DOCTYPE html> <head> <title>Test</title> </head> <body> <textarea> foo</textarea> <textarea> foo</textarea> <textarea>foo</textarea> </body>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/element/textarea/output.html
HTML
<!DOCTYPE html> <html> <head> <title>Test</title> </head> <body> <textarea> foo</textarea> <textarea> foo</textarea> <textarea> foo</textarea> </body></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/element/textarea/output.min.html
HTML
<!doctype html><head> <title>Test</title> </head> <body> <textarea> foo</textarea> <textarea>foo</textarea> <textarea>foo</textarea>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/empty/input.html
HTML
<!doctype html><html lang="en"><head></head><body></body></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/empty/output.html
HTML
<!DOCTYPE html> <html lang="en"> <head></head><body> </body></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/empty/output.min.html
HTML
<!doctype html><html lang=en><body>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/head-comment/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head><!-- test --> <body> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/head-comment/output.html
HTML
<!DOCTYPE html> <html lang="en"> <head> <title>Document</title> </head><!-- test --> <body> </body></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/head-comment/output.min.html
HTML
<!doctype html><html lang=en><head> <title>Document</title> </head><!-- test --> <body>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/headings/input.html
HTML
<!DOCTYPE html> <html> <body> <h1>This is heading 1</h1> <h2>This is heading 2</h2> <h3>This is heading 3</h3> <h4>This is heading 4</h4> <h5>This is heading 5</h5> <h6>This is heading 6</h6> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/headings/output.html
HTML
<!DOCTYPE html> <html> <head></head><body> <h1>This is heading 1</h1> <h2>This is heading 2</h2> <h3>This is heading 3</h3> <h4>This is heading 4</h4> <h5>This is heading 5</h5> <h6>This is heading 6</h6> </body></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/headings/output.min.html
HTML
<!doctype html><body> <h1>This is heading 1</h1> <h2>This is heading 2</h2> <h3>This is heading 3</h3> <h4>This is heading 4</h4> <h5>This is heading 5</h5> <h6>This is heading 6</h6>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/html-comment/input.html
HTML
<!doctype html> <html lang="en"><!-- test --> <body> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/html-comment/output.html
HTML
<!DOCTYPE html> <html lang="en"> <!-- test --><head></head><body> </body></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/html-comment/output.min.html
HTML
<!doctype html><html lang=en><!-- test --><body>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/html-entity/input.html
HTML
<!DOCTYPE html> <html> <body> <h1>HTML Entity Example</h1> <div>A space character: &AMP;</div> <div>A space character: &amp;</div> <div>A space character: &nbsp;</div> <div>The less-than sign: &lt;</div> <div>The greater-than sign: &gt;</div> <div>The double quote sign: &quot;</div> <div>The single quote sign: &apos;</div> <div>The cent sign: &cent;</div> <div>The pound sign: &pound;</div> <div>The yen sign: &yen;</div> <div>The euro sign: &euro;</div> <div>The copyright sign: &copy;</div> <div>The registered trade mark sign: &reg;</div> <div>An a with a grave accent: a&#768;</div> <div>An a with an acute accent: a&#769;</div> <div>An a with a circumflex accent: a&#770;</div> <div>An a with a tilde: a&#771;</div> <div>An o with a grave accent: o&#768;</div> <div>An o with an acute accent: o&#769;</div> <div>An o with a circumflex accent: o&#770;</div> <div>An o with a tilde: o&#771;</div> <div>A space character: &&</div> <div>I'm &notin; I tell you</div> <a href="http://lmgtfy.com/?l=1&amp;q=rick+roll">tired meme</a> <a href="#" onclick="window.location='?l=1&amp;q=rick+roll';return false"> kablammo! </a> <div>&amp;#38;</div> <div>&amp#38;</div> <div>&amp#38</div> <div>&amp#x26;</div> <div>&amp#x26</div> <div>&#38;amp</div> <div>&amp#</div> <div>&amp#1</div> <div>&#8</div> <div>&8</div> <div>&#38;#a</div> <div>&#38;#xb</div> <div>&#38;#xj</div> <div data-test="&amp;amp;"></div> <div data-test="&amp;amp"></div> <div data-test="&amp;#36"></div> <div data-test="&amp;#x36"></div> <div data-test="&unknown">&unknown</div> <div data-test="&unknown;">&unknown;</div> <div data-test="&u;">&u;</div> <div data-test="&ampCounterClockwiseContourIntegral">&ampCounterClockwiseContourIntegral</div> <div data-test="&amp;CounterClockwiseContourIntegral">&amp;CounterClockwiseContourIntegral</div> <div data-test="&ampCounterClockwiseContourIntegral;">&ampCounterClockwiseContourIntegral;</div> <div data-test="&amp;CounterClockwiseContourIntegral;">&amp;CounterClockwiseContourIntegral;</div> <div data-test="&amp;amp">&amp;amp</div> <div data-test="&amp;am">&amp;am</div> <div data-test="&amp;;">&amp;;</div> <div data-test="&amp;">&amp;</div> <div data-test="&amp;#x">&amp;#x</div> <div data-test="&amp;#x1">&amp;#x1</div> <div data-test="&amp;#1">&amp;#1</div> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/html-entity/output.html
HTML
<!DOCTYPE html> <html> <head></head><body> <h1>HTML Entity Example</h1> <div>A space character: &amp;</div> <div>A space character: &amp;</div> <div>A space character: &nbsp;</div> <div>The less-than sign: &lt;</div> <div>The greater-than sign: &gt;</div> <div>The double quote sign: "</div> <div>The single quote sign: '</div> <div>The cent sign: ¢</div> <div>The pound sign: £</div> <div>The yen sign: ¥</div> <div>The euro sign: €</div> <div>The copyright sign: ©</div> <div>The registered trade mark sign: ®</div> <div>An a with a grave accent: à</div> <div>An a with an acute accent: á</div> <div>An a with a circumflex accent: â</div> <div>An a with a tilde: ã</div> <div>An o with a grave accent: ò</div> <div>An o with an acute accent: ó</div> <div>An o with a circumflex accent: ô</div> <div>An o with a tilde: õ</div> <div>A space character: &amp;&amp;</div> <div>I'm ∉ I tell you</div> <a href="http://lmgtfy.com/?l=1&amp;q=rick+roll">tired meme</a> <a href="#" onclick="window.location='?l=1&amp;q=rick+roll';return false"> kablammo! </a> <div>&amp;#38;</div> <div>&amp;#38;</div> <div>&amp;#38</div> <div>&amp;#x26;</div> <div>&amp;#x26</div> <div>&amp;amp</div> <div>&amp;#</div> <div>&amp;#1</div> <div></div> <div>&amp;8</div> <div>&amp;#a</div> <div>&amp;#xb</div> <div>&amp;#xj</div> <div data-test="&amp;amp;"></div> <div data-test="&amp;amp"></div> <div data-test="&amp;#36"></div> <div data-test="&amp;#x36"></div> <div data-test="&amp;unknown">&amp;unknown</div> <div data-test="&amp;unknown;">&amp;unknown;</div> <div data-test="&amp;u;">&amp;u;</div> <div data-test="&amp;ampCounterClockwiseContourIntegral">&amp;CounterClockwiseContourIntegral</div> <div data-test="&amp;CounterClockwiseContourIntegral">&amp;CounterClockwiseContourIntegral</div> <div data-test="&amp;ampCounterClockwiseContourIntegral;">&amp;CounterClockwiseContourIntegral;</div> <div data-test="&amp;CounterClockwiseContourIntegral;">&amp;CounterClockwiseContourIntegral;</div> <div data-test="&amp;amp">&amp;amp</div> <div data-test="&amp;am">&amp;am</div> <div data-test="&amp;;">&amp;;</div> <div data-test="&amp;">&amp;</div> <div data-test="&amp;#x">&amp;#x</div> <div data-test="&amp;#x1">&amp;#x1</div> <div data-test="&amp;#1">&amp;#1</div> </body></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/html-entity/output.min.html
HTML
<!doctype html><body> <h1>HTML Entity Example</h1> <div>A space character: &</div> <div>A space character: &</div> <div>A space character:  </div> <div>The less-than sign: &lt;</div> <div>The greater-than sign: ></div> <div>The double quote sign: "</div> <div>The single quote sign: '</div> <div>The cent sign: ¢</div> <div>The pound sign: £</div> <div>The yen sign: ¥</div> <div>The euro sign: €</div> <div>The copyright sign: ©</div> <div>The registered trade mark sign: ®</div> <div>An a with a grave accent: à</div> <div>An a with an acute accent: á</div> <div>An a with a circumflex accent: â</div> <div>An a with a tilde: ã</div> <div>An o with a grave accent: ò</div> <div>An o with an acute accent: ó</div> <div>An o with a circumflex accent: ô</div> <div>An o with a tilde: õ</div> <div>A space character: &&</div> <div>I'm ∉ I tell you</div> <a href="http://lmgtfy.com/?l=1&q=rick+roll">tired meme</a> <a href=# onclick="window.location='?l=1&q=rick+roll';return false"> kablammo! </a> <div>&amp;#38;</div> <div>&amp;#38;</div> <div>&amp;#38</div> <div>&amp;#x26;</div> <div>&amp;#x26</div> <div>&amp;amp</div> <div>&#</div> <div>&amp;#1</div> <div></div> <div>&8</div> <div>&#a</div> <div>&amp;#xb</div> <div>&#xj</div> <div data-test=&amp;amp;></div> <div data-test=&amp;amp></div> <div data-test=&amp;#36></div> <div data-test=&amp;#x36></div> <div data-test=&unknown>&unknown</div> <div data-test=&unknown;>&unknown;</div> <div data-test=&u;>&u;</div> <div data-test=&amp;ampCounterClockwiseContourIntegral>&CounterClockwiseContourIntegral</div> <div data-test=&CounterClockwiseContourIntegral>&CounterClockwiseContourIntegral</div> <div data-test=&amp;ampCounterClockwiseContourIntegral;>&amp;CounterClockwiseContourIntegral;</div> <div data-test=&amp;CounterClockwiseContourIntegral;>&amp;CounterClockwiseContourIntegral;</div> <div data-test=&amp;amp>&amp;amp</div> <div data-test=&am>&am</div> <div data-test=&;>&;</div> <div data-test=&>&</div> <div data-test=&#x>&#x</div> <div data-test=&amp;#x1>&amp;#x1</div> <div data-test=&amp;#1>&amp;#1</div>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/i/input.html
HTML
<p>test</p><i>test</i> <i>test</i><p>test</p>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/i/output.html
HTML
<html> <head></head><body><p>test</p><i>test</i> <i>test</i><p>test</p></body></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/i/output.min.html
HTML
<p>test</p><i>test</i> <i>test</i><p>test
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/images/input.html
HTML
<!DOCTYPE html> <html> <body> <h2>HTML Images</h2> <p>HTML images are defined with the img tag:</p> <img src="w3schools.jpg" alt="W3Schools.com" width="104" height="142"> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/images/output.html
HTML
<!DOCTYPE html> <html> <head></head><body> <h2>HTML Images</h2> <p>HTML images are defined with the img tag:</p> <img src="w3schools.jpg" alt="W3Schools.com" width="104" height="142"> </body></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/images/output.min.html
HTML
<!doctype html><body> <h2>HTML Images</h2> <p>HTML images are defined with the img tag:</p> <img src=w3schools.jpg alt=W3Schools.com width=104 height=142>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/indent-head-and-body/input.html
HTML
<!DOCTYPE html> <html> <head> <title>Test</title> </head> <body> <h1>Test</h1> <p>Test</p> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/indent-head-and-body/output.html
HTML
<!DOCTYPE html> <html> <head> <title>Test</title> </head> <body> <h1>Test</h1> <p>Test</p> </body></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/indent-head-and-body/output.min.html
HTML
<!doctype html><head> <title>Test</title> </head> <body> <h1>Test</h1> <p>Test</p>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/math-ml/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body> <math> <mspace height="100px" width="10px" style="background: blue"/> <mo>↑</mo> <mo stretchy="false">↑</mo> <mo symmetric="true">↑</mo> <mo minsize="150px">↑</mo> <mo maxsize="50px">↑</mo> </math> <math> <mspace height="100px" width="10px" style="background: blue">Broken</mspace> </math> <math> <mrow> <apply> <power/> <apply> <plus/> <ci>a</ci> <ci>b</ci> </apply> <cn>2</cn> </apply> </mrow> </math> <math/> <math display="block"> <mrow> <msub> <mo movablelimits="false">∮</mo> <mi>C</mi> </msub> <mover accent="true"> <mi>B</mi> <mo stretchy="false">⃗</mo> </mover> <mo>∘</mo> <mpadded lspace="0" width="+0em"> <mi mathvariant="normal">d</mi> </mpadded> <mover accent="true"> <mi>l</mi> <mo stretchy="false">⃗</mo> </mover> <mo>=</mo> <msub> <mi>μ</mi> <mn>0</mn> </msub> <mrow> <mo fence="true" form="prefix">(</mo> <msub> <mi>I</mi> <mtext>enc</mtext> </msub> <mo>+</mo> <msub> <mi>ε</mi> <mn>0</mn> </msub> <mfrac> <mpadded lspace="0" width="+0em"> <mi mathvariant="normal">d</mi> </mpadded> <mrow> <mpadded lspace="0" width="+0em"> <mi mathvariant="normal">d</mi> </mpadded> <mi>t</mi> </mrow> </mfrac> <msub> <mo movablelimits="false">∫</mo> <mi>S</mi> </msub> <mover accent="true"> <mi>E</mi> <mo stretchy="false">⃗</mo> </mover> <mo>∘</mo> <mover accent="true"> <mi>n</mi> <mo stretchy="false">^</mo> </mover> <mspace width="0.2778em"></mspace> <mpadded lspace="0" width="+0em"> <mi mathvariant="normal">d</mi> </mpadded> <mi>a</mi> <mo fence="true" form="postfix">)</mo> </mrow> </mrow> </math> <math> <mn>1</mn> <mspace width="1em" style="border-top: 1px solid blue"/> <mfrac> <mrow> <mn>2</mn> <mspace depth="1em" style="border-left: 1px solid blue"/> </mrow> <mrow> <mn>3</mn> <mspace height="2em" style="border-left: 1px solid blue"/> </mrow> </mfrac> </math> <math> <mmultiscripts> <mn>1</mn> <mn>2</mn> <mn>3</mn> <none/> <mn>5</mn> <mprescripts/> <mn>6</mn> <none/> <mn>8</mn> <mn>9</mn> </mmultiscripts> </math> <math> <semantics> <mfrac> <mn>1</mn> <mn>2</mn> </mfrac> <annotation encoding="application/x-tex">\frac{1}{2}</annotation> <annotation-xml encoding="application/mathml-content+xml"> <apply> <divide/> <cn>1</cn> <cn>2</cn> </apply> </annotation-xml> </semantics> </math> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/math-ml/output.html
HTML
<!DOCTYPE html> <html lang="en"> <head> <title>Document</title> </head> <body> <math> <mspace height="100px" width="10px" style="background: blue" /> <mo>↑</mo> <mo stretchy="false">↑</mo> <mo symmetric="true">↑</mo> <mo minsize="150px">↑</mo> <mo maxsize="50px">↑</mo> </math> <math> <mspace height="100px" width="10px" style="background: blue">Broken</mspace> </math> <math> <mrow> <apply> <power /> <apply> <plus /> <ci>a</ci> <ci>b</ci> </apply> <cn>2</cn> </apply> </mrow> </math> <math /> <math display="block"> <mrow> <msub> <mo movablelimits="false">∮</mo> <mi>C</mi> </msub> <mover accent="true"> <mi>B</mi> <mo stretchy="false">⃗</mo> </mover> <mo>∘</mo> <mpadded lspace="0" width="+0em"> <mi mathvariant="normal">d</mi> </mpadded> <mover accent="true"> <mi>l</mi> <mo stretchy="false">⃗</mo> </mover> <mo>=</mo> <msub> <mi>μ</mi> <mn>0</mn> </msub> <mrow> <mo fence="true" form="prefix">(</mo> <msub> <mi>I</mi> <mtext>enc</mtext> </msub> <mo>+</mo> <msub> <mi>ε</mi> <mn>0</mn> </msub> <mfrac> <mpadded lspace="0" width="+0em"> <mi mathvariant="normal">d</mi> </mpadded> <mrow> <mpadded lspace="0" width="+0em"> <mi mathvariant="normal">d</mi> </mpadded> <mi>t</mi> </mrow> </mfrac> <msub> <mo movablelimits="false">∫</mo> <mi>S</mi> </msub> <mover accent="true"> <mi>E</mi> <mo stretchy="false">⃗</mo> </mover> <mo>∘</mo> <mover accent="true"> <mi>n</mi> <mo stretchy="false">^</mo> </mover> <mspace width="0.2778em" /> <mpadded lspace="0" width="+0em"> <mi mathvariant="normal">d</mi> </mpadded> <mi>a</mi> <mo fence="true" form="postfix">)</mo> </mrow> </mrow> </math> <math> <mn>1</mn> <mspace width="1em" style="border-top: 1px solid blue" /> <mfrac> <mrow> <mn>2</mn> <mspace depth="1em" style="border-left: 1px solid blue" /> </mrow> <mrow> <mn>3</mn> <mspace height="2em" style="border-left: 1px solid blue" /> </mrow> </mfrac> </math> <math> <mmultiscripts> <mn>1</mn> <mn>2</mn> <mn>3</mn> <none /> <mn>5</mn> <mprescripts /> <mn>6</mn> <none /> <mn>8</mn> <mn>9</mn> </mmultiscripts> </math> <math> <semantics> <mfrac> <mn>1</mn> <mn>2</mn> </mfrac> <annotation encoding="application/x-tex">\frac{1}{2}</annotation> <annotation-xml encoding="application/mathml-content+xml"> <apply> <divide /> <cn>1</cn> <cn>2</cn> </apply> </annotation-xml> </semantics> </math> </body></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/math-ml/output.min.html
HTML
<!doctype html><html lang=en><head> <title>Document</title> </head> <body> <math> <mspace height=100px width=10px style="background: blue"/> <mo>↑</mo> <mo stretchy=false>↑</mo> <mo symmetric=true>↑</mo> <mo minsize=150px>↑</mo> <mo maxsize=50px>↑</mo> </math> <math> <mspace height=100px width=10px style="background: blue">Broken</mspace> </math> <math> <mrow> <apply> <power/> <apply> <plus/> <ci>a</ci> <ci>b</ci> </apply> <cn>2</cn> </apply> </mrow> </math> <math/> <math display=block> <mrow> <msub> <mo movablelimits=false>∮</mo> <mi>C</mi> </msub> <mover accent=true> <mi>B</mi> <mo stretchy=false>⃗</mo> </mover> <mo>∘</mo> <mpadded lspace=0 width=+0em> <mi mathvariant=normal>d</mi> </mpadded> <mover accent=true> <mi>l</mi> <mo stretchy=false>⃗</mo> </mover> <mo>=</mo> <msub> <mi>μ</mi> <mn>0</mn> </msub> <mrow> <mo fence=true form=prefix>(</mo> <msub> <mi>I</mi> <mtext>enc</mtext> </msub> <mo>+</mo> <msub> <mi>ε</mi> <mn>0</mn> </msub> <mfrac> <mpadded lspace=0 width=+0em> <mi mathvariant=normal>d</mi> </mpadded> <mrow> <mpadded lspace=0 width=+0em> <mi mathvariant=normal>d</mi> </mpadded> <mi>t</mi> </mrow> </mfrac> <msub> <mo movablelimits=false>∫</mo> <mi>S</mi> </msub> <mover accent=true> <mi>E</mi> <mo stretchy=false>⃗</mo> </mover> <mo>∘</mo> <mover accent=true> <mi>n</mi> <mo stretchy=false>^</mo> </mover> <mspace width=0.2778em /> <mpadded lspace=0 width=+0em> <mi mathvariant=normal>d</mi> </mpadded> <mi>a</mi> <mo fence=true form=postfix>)</mo> </mrow> </mrow> </math> <math> <mn>1</mn> <mspace width=1em style="border-top: 1px solid blue"/> <mfrac> <mrow> <mn>2</mn> <mspace depth=1em style="border-left: 1px solid blue"/> </mrow> <mrow> <mn>3</mn> <mspace height=2em style="border-left: 1px solid blue"/> </mrow> </mfrac> </math> <math> <mmultiscripts> <mn>1</mn> <mn>2</mn> <mn>3</mn> <none/> <mn>5</mn> <mprescripts/> <mn>6</mn> <none/> <mn>8</mn> <mn>9</mn> </mmultiscripts> </math> <math> <semantics> <mfrac> <mn>1</mn> <mn>2</mn> </mfrac> <annotation encoding=application/x-tex>\frac{1}{2}</annotation> <annotation-xml encoding=application/mathml-content+xml> <apply> <divide/> <cn>1</cn> <cn>2</cn> </apply> </annotation-xml> </semantics> </math>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/menu/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body> <menu> <li><button onclick="copy()"><img src="copy.svg" alt="Copy"></button></li> <li><button onclick="cut()"><img src="cut.svg" alt="Cut"></button></li> <li><button onclick="paste()"><img src="paste.svg" alt="Paste"></button></li> </menu> <menu><li><button onclick="copy()"><img src="copy.svg" alt="Copy"></button></li><li><button onclick="cut()"><img src="cut.svg" alt="Cut"></button></li><li><button onclick="paste()"><img src="paste.svg" alt="Paste"></button></li></menu> <p>test</p><unknown><li>test</li></unknown> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/menu/output.html
HTML
<!DOCTYPE html> <html lang="en"> <head> <title>Document</title> </head> <body> <menu> <li><button onclick="copy()"><img src="copy.svg" alt="Copy"></button></li> <li><button onclick="cut()"><img src="cut.svg" alt="Cut"></button></li> <li><button onclick="paste()"><img src="paste.svg" alt="Paste"></button></li> </menu> <menu><li><button onclick="copy()"><img src="copy.svg" alt="Copy"></button></li><li><button onclick="cut()"><img src="cut.svg" alt="Cut"></button></li><li><button onclick="paste()"><img src="paste.svg" alt="Paste"></button></li></menu> <p>test</p><unknown><li>test</li></unknown> </body></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/menu/output.min.html
HTML
<!doctype html><html lang=en><head> <title>Document</title> </head> <body> <menu> <li><button onclick=copy()><img src=copy.svg alt=Copy></button></li> <li><button onclick=cut()><img src=cut.svg alt=Cut></button></li> <li><button onclick=paste()><img src=paste.svg alt=Paste></button></li> </menu> <menu><li><button onclick=copy()><img src=copy.svg alt=Copy></button><li><button onclick=cut()><img src=cut.svg alt=Cut></button><li><button onclick=paste()><img src=paste.svg alt=Paste></button></menu> <p>test</p><unknown><li>test</li></unknown>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/ng-tag/input.html
HTML
<ng-include src="x"></ng-include> <ng:include src="x"></ng:include> <ng-include src="'views/partial-notification.html'"></ng-include><div ng-view=""></div>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/ng-tag/output.html
HTML
<html> <head></head><body><ng-include src="x"></ng-include> <ng:include src="x"></ng:include> <ng-include src="'views/partial-notification.html'"></ng-include><div ng-view=""></div> </body></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/ng-tag/output.min.html
HTML
<ng-include src=x></ng-include> <ng:include src=x></ng:include> <ng-include src="'views/partial-notification.html'"></ng-include><div ng-view=""></div>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/noscript-tag/input.html
HTML
<!DOCTYPE html> <html> <body> <p id="demo"></p> <script> document.getElementById("demo").innerHTML = "Hello JavaScript!"; </script> <noscript>Sorry, your browser does not support JavaScript!</noscript> <p>A browser without support for JavaScript will show the text written inside the noscript element.</p> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/noscript-tag/output.html
HTML
<!DOCTYPE html> <html> <head></head><body> <p id="demo"></p> <script> document.getElementById("demo").innerHTML = "Hello JavaScript!"; </script> <noscript>Sorry, your browser does not support JavaScript!</noscript> <p>A browser without support for JavaScript will show the text written inside the noscript element.</p> </body></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/noscript-tag/output.min.html
HTML
<!doctype html><body> <p id=demo></p> <script> document.getElementById("demo").innerHTML = "Hello JavaScript!"; </script> <noscript>Sorry, your browser does not support JavaScript!</noscript> <p>A browser without support for JavaScript will show the text written inside the noscript element.</p>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/object/input.html
HTML
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> </head> <body> <object type="image/svg+xml" data="image.svg"> <div>[fallback image]</div> </object> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/object/output.html
HTML
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> </head> <body> <object type="image/svg+xml" data="image.svg"> <div>[fallback image]</div> </object> </body></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/object/output.min.html
HTML
<!doctype html><html lang=en><head> <meta charset=UTF-8> <meta name=viewport content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <meta http-equiv=X-UA-Compatible content="ie=edge"> <title>Document</title> </head> <body> <object type=image/svg+xml data=image.svg> <div>[fallback image]</div> </object>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/omit-html/input.html
HTML
<!doctype html> <html lang="en"> <body> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/omit-html/output.html
HTML
<!DOCTYPE html> <html lang="en"> <head></head><body> </body></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/omit-html/output.min.html
HTML
<!doctype html><html lang=en><body>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/optional/input.html
HTML
<!doctype html> <html lang="en"> <head><title>Document</title></head><body> <ul><li>test</li></ul> <ul> <li>test</li> </ul> <ul> <li>test</li> <li>test</li> </ul> <ul> <li>test</li> <li>test</li></ul> <ul><li>test</li><li>test</li><li>test</li></ul> <ul><li>test</li><li>test</li> <li>test</li> </ul> <menu><li>test</li></menu> <menu> <li>test</li> </menu> <menu> <li>test</li> <li>test</li> </menu> <menu> <li>test</li> <li>test</li></menu> <menu><li>test</li><li>test</li><li>test</li></menu> <menu><li>test</li><li>test</li> <li>test</li> </menu> <article> <h1>FAQ</h1> <dl><dt>What do we want?</dt><dd>Our data.</dd><dt>When do we want it?</dt><dd>Now.</dd><dt>Where is it?</dt><dd>We are not sure.</dd></dl> </article> <form action="courseselector.dll" method="get"> <p>Which course would you like to watch today? <p><label>Course: <select name="c"> <optgroup label="8.01 Physics I: Classical Mechanics"> <option value="8.01.1">Lecture 01: Powers of Ten <option value="8.01.2">Lecture 02: 1D Kinematics <option value="8.01.3">Lecture 03: Vectors </optgroup><optgroup label="8.02 Electricity and Magnetism"> <option value="8.02.1">Lecture 01: What holds our world together? <option value="8.02.2">Lecture 02: Electric Field <option value="8.02.3">Lecture 03: Electric Flux </optgroup> <optgroup label="8.03 Physics III: Vibrations and Waves"> <option value="8.03.1">Lecture 01: Periodic Phenomenon <option value="8.03.2">Lecture 02: Beats <option value="8.03.3">Lecture 03: Forced Oscillations with Damping </optgroup> </select> </label> <p><input type=submit value="▶ Play"> </form> <table> <tr> <th>Month</th><th>Savings</th> </tr> <tr> <td>January</td> <td>$100</td> </tr> <tr> <td>February</td> <td>$80</td> </tr> </table> <table> <tr><th>Month</th><th>Savings</th></tr> <tr> <td>January</td> <td>$100</td> </tr> <tr> <td>February</td> <td>$80</td> </tr> </table> <table width="100%" cellspacing="0" border="1"> <tr> <th>One</th> <th>Two</th> </tr> <tr> <th>Three</th><td>5.5</td> <td>6.0</td> </tr> </table> <table width="100%" cellspacing="0" border="1"> <tr> <th>One</th> <th>Two</th> </tr> <tr><th>Three</th><td>5.5</td><td>6.0</td></tr> </table> <table><tr><th>Month</th><th>Savings</th></tr><tr> <td>January</td> <td>$100</td> </tr><tr> <td>February</td> <td>$80</td> </tr></table> <table><thead> <tr> <th>Items</th> <th scope="col">Expenditure</th> </tr> </thead><tbody> <tr> <th scope="row">Donuts</th> <td>3,000</td> </tr> <tr> <th scope="row">Stationery</th> <td>18,000</td> </tr> </tbody><tfoot> <tr> <th scope="row">Totals</th> <td>21,000</td> </tr> </tfoot></table> <table><thead> <tr> <th>Items</th> <th scope="col">Expenditure</th> </tr> </thead><tfoot> <tr> <th scope="row">Totals</th> <td>21,000</td> </tr> </tfoot></table> <table><thead> <tr> <th>Items</th> <th scope="col">Expenditure</th> </tr> </thead></table> <table><tbody> <tr> <th scope="row">Donuts</th> <td>3,000</td> </tr> <tr> <th scope="row">Stationery</th> <td>18,000</td> </tr> </tbody></table> <table> <caption>Superheros and sidekicks</caption> <colgroup> <col> <col span="2" class="batman"> <col span="2" class="flash"> </colgroup> <tr> <td> </td> <th scope="col">Batman</th> <th scope="col">Robin</th> <th scope="col">The Flash</th> <th scope="col">Kid Flash</th> </tr> <tr> <th scope="row">Skill</th> <td>Smarts</td> <td>Dex, acrobat</td> <td>Super speed</td> <td>Super speed</td> </tr> </table> <table> <caption>Superheros and sidekicks</caption> <colgroup> <col> <col span="2" class="batman"> <col span="2" class="flash"> </colgroup><tr> <td> </td> <th scope="col">Batman</th> <th scope="col">Robin</th> <th scope="col">The Flash</th> <th scope="col">Kid Flash</th> </tr> </table> <table> <caption>Superheros and sidekicks</caption> <colgroup> <col> <col span="2" class="batman"> <col span="2" class="flash"> </colgroup><!-- comment --> <tr> <td> </td> <th scope="col">Batman</th> <th scope="col">Robin</th> <th scope="col">The Flash</th> <th scope="col">Kid Flash</th> </tr> </table> <table><caption>Superheros and sidekicks</caption> <colgroup> <col> <col span="2" class="batman"> <col span="2" class="flash"> </colgroup></table> <table><caption>Superheros and sidekicks</caption> <colgroup> <col> <col span="2" class="batman"> <col span="2" class="flash"> </colgroup> <tbody> <tr> <td> </td> <th scope="col">Batman</th> <th scope="col">Robin</th> <th scope="col">The Flash</th> <th scope="col">Kid Flash</th> </tr> </tbody> </table> <table> <caption>He-Man and Skeletor facts</caption> <tr> <td> </td> <th scope="col" class="heman">He-Man</th> <th scope="col" class="skeletor">Skeletor</th> </tr> <tr> <th scope="row">Role</th> <td>Hero</td> <td>Villain</td> </tr> </table> <table> <caption>He-Man and Skeletor facts</caption><tr> <td> </td> <th scope="col" class="heman">He-Man</th> <th scope="col" class="skeletor">Skeletor</th> </tr> <tr> <th scope="row">Role</th> <td>Hero</td> <td>Villain</td> </tr> </table> <table> <caption>He-Man and Skeletor facts</caption><!-- comment --> <tr> <td> </td> <th scope="col" class="heman">He-Man</th> <th scope="col" class="skeletor">Skeletor</th> </tr> <tr> <th scope="row">Role</th> <td>Hero</td> <td>Villain</td> </tr> </table> <ruby> 漢 <rp>(</rp><rt>kan</rt><rp>)</rp> 字 <rp>(</rp><rt>ji</rt><rp>)</rp> </ruby> <ruby>漢 <rp>(</rp><rt>kan</rt><rp>)</rp>字 <rp>(</rp><rt>ji</rt><rp>)</rp></ruby> <div> <p>test</p> <p>test <p>test</p> <p>test</p> <p>test</p><p>test</p> <p>test</p><div>test</div> <p>test</p><div>test</div> <p>test</p><img> </div> <div><p>test</p></div> <a><p>test</p></a> <my-element><p>Test</p></my-element> <unknown><p>test</p></unknown> <spacer><p>test</p></spacer> <div> <p>test</p><svg></svg> </div> <acronym><p>test</p></acronym> <applet code="game.class" align="left" archive="game.zip" height="250" width="350"> <param name="difficulty" value="easy"> <p>Sorry, you need Java to play this game.</p></applet> <big><p>test</p></big> <blink><p>test</p></blink> <center><p>test</p></center> <command><p>test</p></command> <content><p>test</p></content> <dir><p>test</p></dir> <element><p>test</p></element> <font><p>test</p></font> <kbd><p>test</p></kbd> <listing><p>test</p></listing> <marquee behavior="test" direction="test"><p>test</p></marquee> <multicol><p>test</p></multicol> <noembed><p>test</p></noembed> <shadow><p>test</p></shadow> <strike><p>test</p></strike> <tt><p>test</p></tt> <xmp><p>test</p></xmp> <div><p>test</p><svg>test</svg></div> <ruby> <rb>漢<rb>字 <rp>(</rp><rt>kan<rt>ji<rp>)</rp> </ruby> <ruby> <rb>漢<rb><rp>(</rp><rt>kan<rt>ji<rp>)</rp> </ruby> <div class="info"><ruby> <rbc> <rb>旧</rb><rt>jiù</rt> <rb>金</rb><rt>jīn</rt> <rb>山</rb><rt>shān</rt> </rbc> <rtc>San Francisco</rtc></ruby> </div> <table><thead> <tr><th>Customer</th><th>Order</th><th>Month</th></tr> </thead><tbody> <tr><td>Customer 1</td><td>#1</td><td>January</td></tr> <tr><td>Customer 1</td><td>#2</td><td>April</td></tr> <tr><td>Customer 1</td><td>#3</td><td>March</td></tr> </tbody><tbody> <tr><td>Customer 2</td><td>#1</td><td>January</td></tr> <tr><td>Customer 2</td><td>#2</td><td>April</td></tr> <tr><td>Customer 2</td><td>#3</td><td>March</td></tr> </tbody><tbody> <tr><td>Customer 3</td><td>#1</td><td>January</td></tr> <tr><td>Customer 3</td><td>#2</td><td>April</td></tr> <tr><td>Customer 3</td><td>#3</td><td>March</td></tr> </tbody></table> <table><colgroup> <col class=""></col> <col class=""></col> <col class=""></col> </colgroup><colgroup> <col class=""></col> <col class=""></col> <col class=""></col> </colgroup><tr> <td>Cell</td> <td>Cell</td> <td>Cell</td> </tr> </table> <table> <colgroup><col class=""></col><col class=""></col><col class=""></col></colgroup> <tr> <td>Cell</td> <td>Cell</td> <td>Cell</td> </tr> </table> <table> <colgroup><col class=""></col><col class=""></col><col class=""></col></colgroup><tr> <td>Cell</td> <td>Cell</td> <td>Cell</td> </tr> </table> <table> <colgroup><col class=""></col><col class=""></col><col class=""></col></colgroup><colgroup><col class=""></col><col class=""></col><col class=""></col></colgroup> <tr> <td>Cell</td> <td>Cell</td> <td>Cell</td> </tr> </table> <table><tbody><tr><td>test</td></tr></tbody><tbody><tr><td>test</td></tr></tbody><tbody><tr><td>test</td></tr></tbody></table> <table><thead><tr><td>test</td></tr></thead><tbody><tr><td>test</td></tr></tbody><tbody><tr><td>test</td></tr></tbody></table> <table><tfoot><tr><td>test</td></tr></tfoot><tbody><tr><td>test</td></tr></tbody><tbody><tr><td>test</td></tr></tbody></table> <p>test</p><rbc>test</rbc> <rbc><p>test</p></rbc> <p>test</p><keygen name="name" challenge="challenge string" keytype="type" keyparams="pqg-params"> <p>test</p><kbd>test</kbd> <kbd><p>test</p></kbd> <p>test</p><isindex> <p>test</p><frameset></frameset> <p>test</p><frame> <p>test</p><font>test</font> <font><p>test</p></font> <p>test</p><big>test</big> <big><p>test</p></big> <p>test</p><basefont> <p>test</p><acronym title="test">test</acronym> <p>test</p><tt><p>test</p></tt> <tt><p>test</p></tt> <p>test</p><tt>test</tt> <p>test</p><strike>test</strike> <strike><p>test</p></strike> <p>test</p><noframes>test</noframes> <noframes><p>test</p></noframes> <p>test</p><ul><li>test</li></ul> <p>test</p><ol><li>test</li></ol> <p>test</p><menu><li>test</li></menu> <p>test</p><unknown>test</unknown> <unknown><p>test</p></unknown> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/optional/output.html
HTML
<!DOCTYPE html> <html lang="en"> <head><title>Document</title></head><body> <ul><li>test</li></ul> <ul> <li>test</li> </ul> <ul> <li>test</li> <li>test</li> </ul> <ul> <li>test</li> <li>test</li></ul> <ul><li>test</li><li>test</li><li>test</li></ul> <ul><li>test</li><li>test</li> <li>test</li> </ul> <menu><li>test</li></menu> <menu> <li>test</li> </menu> <menu> <li>test</li> <li>test</li> </menu> <menu> <li>test</li> <li>test</li></menu> <menu><li>test</li><li>test</li><li>test</li></menu> <menu><li>test</li><li>test</li> <li>test</li> </menu> <article> <h1>FAQ</h1> <dl><dt>What do we want?</dt><dd>Our data.</dd><dt>When do we want it?</dt><dd>Now.</dd><dt>Where is it?</dt><dd>We are not sure.</dd></dl> </article> <form action="courseselector.dll" method="get"> <p>Which course would you like to watch today? </p><p><label>Course: <select name="c"> <optgroup label="8.01 Physics I: Classical Mechanics"> <option value="8.01.1">Lecture 01: Powers of Ten </option><option value="8.01.2">Lecture 02: 1D Kinematics </option><option value="8.01.3">Lecture 03: Vectors </option></optgroup><optgroup label="8.02 Electricity and Magnetism"> <option value="8.02.1">Lecture 01: What holds our world together? </option><option value="8.02.2">Lecture 02: Electric Field </option><option value="8.02.3">Lecture 03: Electric Flux </option></optgroup> <optgroup label="8.03 Physics III: Vibrations and Waves"> <option value="8.03.1">Lecture 01: Periodic Phenomenon </option><option value="8.03.2">Lecture 02: Beats </option><option value="8.03.3">Lecture 03: Forced Oscillations with Damping </option></optgroup> </select> </label> </p><p><input type="submit" value="▶ Play"> </p></form> <table> <tbody><tr> <th>Month</th><th>Savings</th> </tr> <tr> <td>January</td> <td>$100</td> </tr> <tr> <td>February</td> <td>$80</td> </tr> </tbody></table> <table> <tbody><tr><th>Month</th><th>Savings</th></tr> <tr> <td>January</td> <td>$100</td> </tr> <tr> <td>February</td> <td>$80</td> </tr> </tbody></table> <table width="100%" cellspacing="0" border="1"> <tbody><tr> <th>One</th> <th>Two</th> </tr> <tr> <th>Three</th><td>5.5</td> <td>6.0</td> </tr> </tbody></table> <table width="100%" cellspacing="0" border="1"> <tbody><tr> <th>One</th> <th>Two</th> </tr> <tr><th>Three</th><td>5.5</td><td>6.0</td></tr> </tbody></table> <table><tbody><tr><th>Month</th><th>Savings</th></tr><tr> <td>January</td> <td>$100</td> </tr><tr> <td>February</td> <td>$80</td> </tr></tbody></table> <table><thead> <tr> <th>Items</th> <th scope="col">Expenditure</th> </tr> </thead><tbody> <tr> <th scope="row">Donuts</th> <td>3,000</td> </tr> <tr> <th scope="row">Stationery</th> <td>18,000</td> </tr> </tbody><tfoot> <tr> <th scope="row">Totals</th> <td>21,000</td> </tr> </tfoot></table> <table><thead> <tr> <th>Items</th> <th scope="col">Expenditure</th> </tr> </thead><tfoot> <tr> <th scope="row">Totals</th> <td>21,000</td> </tr> </tfoot></table> <table><thead> <tr> <th>Items</th> <th scope="col">Expenditure</th> </tr> </thead></table> <table><tbody> <tr> <th scope="row">Donuts</th> <td>3,000</td> </tr> <tr> <th scope="row">Stationery</th> <td>18,000</td> </tr> </tbody></table> <table> <caption>Superheros and sidekicks</caption> <colgroup> <col> <col span="2" class="batman"> <col span="2" class="flash"> </colgroup> <tbody><tr> <td>&nbsp;</td> <th scope="col">Batman</th> <th scope="col">Robin</th> <th scope="col">The Flash</th> <th scope="col">Kid Flash</th> </tr> <tr> <th scope="row">Skill</th> <td>Smarts</td> <td>Dex, acrobat</td> <td>Super speed</td> <td>Super speed</td> </tr> </tbody></table> <table> <caption>Superheros and sidekicks</caption> <colgroup> <col> <col span="2" class="batman"> <col span="2" class="flash"> </colgroup><tbody><tr> <td>&nbsp;</td> <th scope="col">Batman</th> <th scope="col">Robin</th> <th scope="col">The Flash</th> <th scope="col">Kid Flash</th> </tr> </tbody></table> <table> <caption>Superheros and sidekicks</caption> <colgroup> <col> <col span="2" class="batman"> <col span="2" class="flash"> </colgroup><!-- comment --> <tbody><tr> <td>&nbsp;</td> <th scope="col">Batman</th> <th scope="col">Robin</th> <th scope="col">The Flash</th> <th scope="col">Kid Flash</th> </tr> </tbody></table> <table><caption>Superheros and sidekicks</caption> <colgroup> <col> <col span="2" class="batman"> <col span="2" class="flash"> </colgroup></table> <table><caption>Superheros and sidekicks</caption> <colgroup> <col> <col span="2" class="batman"> <col span="2" class="flash"> </colgroup> <tbody> <tr> <td>&nbsp;</td> <th scope="col">Batman</th> <th scope="col">Robin</th> <th scope="col">The Flash</th> <th scope="col">Kid Flash</th> </tr> </tbody> </table> <table> <caption>He-Man and Skeletor facts</caption> <tbody><tr> <td>&nbsp;</td> <th scope="col" class="heman">He-Man</th> <th scope="col" class="skeletor">Skeletor</th> </tr> <tr> <th scope="row">Role</th> <td>Hero</td> <td>Villain</td> </tr> </tbody></table> <table> <caption>He-Man and Skeletor facts</caption><tbody><tr> <td>&nbsp;</td> <th scope="col" class="heman">He-Man</th> <th scope="col" class="skeletor">Skeletor</th> </tr> <tr> <th scope="row">Role</th> <td>Hero</td> <td>Villain</td> </tr> </tbody></table> <table> <caption>He-Man and Skeletor facts</caption><!-- comment --> <tbody><tr> <td>&nbsp;</td> <th scope="col" class="heman">He-Man</th> <th scope="col" class="skeletor">Skeletor</th> </tr> <tr> <th scope="row">Role</th> <td>Hero</td> <td>Villain</td> </tr> </tbody></table> <ruby> 漢 <rp>(</rp><rt>kan</rt><rp>)</rp> 字 <rp>(</rp><rt>ji</rt><rp>)</rp> </ruby> <ruby>漢 <rp>(</rp><rt>kan</rt><rp>)</rp>字 <rp>(</rp><rt>ji</rt><rp>)</rp></ruby> <div> <p>test</p> <p>test </p><p>test</p> <p>test</p> <p>test</p><p>test</p> <p>test</p><div>test</div> <p>test</p><div>test</div> <p>test</p><img> </div> <div><p>test</p></div> <a><p>test</p></a> <my-element><p>Test</p></my-element> <unknown><p>test</p></unknown> <spacer><p>test</p></spacer> <div> <p>test</p><svg /> </div> <acronym><p>test</p></acronym> <applet code="game.class" align="left" archive="game.zip" height="250" width="350"> <param name="difficulty" value="easy"> <p>Sorry, you need Java to play this game.</p></applet> <big><p>test</p></big> <blink><p>test</p></blink> <center><p>test</p></center> <command><p>test</p></command> <content><p>test</p></content> <dir><p>test</p></dir> <element><p>test</p></element> <font><p>test</p></font> <kbd><p>test</p></kbd> <listing><p>test</p></listing> <marquee behavior="test" direction="test"><p>test</p></marquee> <multicol><p>test</p></multicol> <noembed><p>test</p></noembed> <shadow><p>test</p></shadow> <strike><p>test</p></strike> <tt><p>test</p></tt> <xmp><p>test</p></xmp> <div><p>test</p><svg>test</svg></div> <ruby> <rb>漢</rb><rb>字 </rb><rp>(</rp><rt>kan</rt><rt>ji</rt><rp>)</rp> </ruby> <ruby> <rb>漢</rb><rb></rb><rp>(</rp><rt>kan</rt><rt>ji</rt><rp>)</rp> </ruby> <div class="info"><ruby> <rbc> <rb>旧</rb><rt>jiù</rt> <rb>金</rb><rt>jīn</rt> <rb>山</rb><rt>shān</rt> </rbc> <rtc>San Francisco</rtc></ruby> </div> <table><thead> <tr><th>Customer</th><th>Order</th><th>Month</th></tr> </thead><tbody> <tr><td>Customer 1</td><td>#1</td><td>January</td></tr> <tr><td>Customer 1</td><td>#2</td><td>April</td></tr> <tr><td>Customer 1</td><td>#3</td><td>March</td></tr> </tbody><tbody> <tr><td>Customer 2</td><td>#1</td><td>January</td></tr> <tr><td>Customer 2</td><td>#2</td><td>April</td></tr> <tr><td>Customer 2</td><td>#3</td><td>March</td></tr> </tbody><tbody> <tr><td>Customer 3</td><td>#1</td><td>January</td></tr> <tr><td>Customer 3</td><td>#2</td><td>April</td></tr> <tr><td>Customer 3</td><td>#3</td><td>March</td></tr> </tbody></table> <table><colgroup> <col class=""> <col class=""> <col class=""> </colgroup><colgroup> <col class=""> <col class=""> <col class=""> </colgroup><tbody><tr> <td>Cell</td> <td>Cell</td> <td>Cell</td> </tr> </tbody></table> <table> <colgroup><col class=""><col class=""><col class=""></colgroup> <tbody><tr> <td>Cell</td> <td>Cell</td> <td>Cell</td> </tr> </tbody></table> <table> <colgroup><col class=""><col class=""><col class=""></colgroup><tbody><tr> <td>Cell</td> <td>Cell</td> <td>Cell</td> </tr> </tbody></table> <table> <colgroup><col class=""><col class=""><col class=""></colgroup><colgroup><col class=""><col class=""><col class=""></colgroup> <tbody><tr> <td>Cell</td> <td>Cell</td> <td>Cell</td> </tr> </tbody></table> <table><tbody><tr><td>test</td></tr></tbody><tbody><tr><td>test</td></tr></tbody><tbody><tr><td>test</td></tr></tbody></table> <table><thead><tr><td>test</td></tr></thead><tbody><tr><td>test</td></tr></tbody><tbody><tr><td>test</td></tr></tbody></table> <table><tfoot><tr><td>test</td></tr></tfoot><tbody><tr><td>test</td></tr></tbody><tbody><tr><td>test</td></tr></tbody></table> <p>test</p><rbc>test</rbc> <rbc><p>test</p></rbc> <p>test</p><keygen name="name" challenge="challenge string" keytype="type" keyparams="pqg-params"> <p>test</p><kbd>test</kbd> <kbd><p>test</p></kbd> <p>test</p><isindex> <p>test</p> <p>test</p> <p>test</p><font>test</font> <font><p>test</p></font> <p>test</p><big>test</big> <big><p>test</p></big> <p>test</p><basefont> <p>test</p><acronym title="test">test</acronym> <p>test</p><tt><p>test</p></tt> <tt><p>test</p></tt> <p>test</p><tt>test</tt> <p>test</p><strike>test</strike> <strike><p>test</p></strike> <p>test</p><noframes>test</noframes> <noframes><p>test</p></noframes> <p>test</p><ul><li>test</li></ul> <p>test</p><ol><li>test</li></ol> <p>test</p><menu><li>test</li></menu> <p>test</p><unknown>test</unknown> <unknown><p>test</p></unknown> </isindex></body></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/optional/output.min.html
HTML
<!doctype html><html lang=en><title>Document</title><body> <ul><li>test</ul> <ul> <li>test</li> </ul> <ul> <li>test</li> <li>test</li> </ul> <ul> <li>test</li> <li>test</ul> <ul><li>test<li>test<li>test</ul> <ul><li>test<li>test</li> <li>test</li> </ul> <menu><li>test</menu> <menu> <li>test</li> </menu> <menu> <li>test</li> <li>test</li> </menu> <menu> <li>test</li> <li>test</menu> <menu><li>test<li>test<li>test</menu> <menu><li>test<li>test</li> <li>test</li> </menu> <article> <h1>FAQ</h1> <dl><dt>What do we want?<dd>Our data.<dt>When do we want it?<dd>Now.<dt>Where is it?<dd>We are not sure.</dl> </article> <form action=courseselector.dll method=get> <p>Which course would you like to watch today? <p><label>Course: <select name=c> <optgroup label="8.01 Physics I: Classical Mechanics"> <option value=8.01.1>Lecture 01: Powers of Ten <option value=8.01.2>Lecture 02: 1D Kinematics <option value=8.01.3>Lecture 03: Vectors <optgroup label="8.02 Electricity and Magnetism"> <option value=8.02.1>Lecture 01: What holds our world together? <option value=8.02.2>Lecture 02: Electric Field <option value=8.02.3>Lecture 03: Electric Flux </optgroup> <optgroup label="8.03 Physics III: Vibrations and Waves"> <option value=8.03.1>Lecture 01: Periodic Phenomenon <option value=8.03.2>Lecture 02: Beats <option value=8.03.3>Lecture 03: Forced Oscillations with Damping </optgroup> </select> </label> <p><input type=submit value="▶ Play"> </form> <table> <tr> <th>Month<th>Savings</th> </tr> <tr> <td>January</td> <td>$100</td> </tr> <tr> <td>February</td> <td>$80</td> </tr> </table> <table> <tr><th>Month<th>Savings</tr> <tr> <td>January</td> <td>$100</td> </tr> <tr> <td>February</td> <td>$80</td> </tr> </table> <table width=100% cellspacing=0 border=1> <tr> <th>One</th> <th>Two</th> </tr> <tr> <th>Three<td>5.5</td> <td>6.0</td> </tr> </table> <table width=100% cellspacing=0 border=1> <tr> <th>One</th> <th>Two</th> </tr> <tr><th>Three<td>5.5<td>6.0</tr> </table> <table><tr><th>Month<th>Savings<tr> <td>January</td> <td>$100</td> <tr> <td>February</td> <td>$80</td> </table> <table><thead> <tr> <th>Items</th> <th scope=col>Expenditure</th> </tr> <tbody> <tr> <th scope=row>Donuts</th> <td>3,000</td> </tr> <tr> <th scope=row>Stationery</th> <td>18,000</td> </tr> <tfoot> <tr> <th scope=row>Totals</th> <td>21,000</td> </tr> </table> <table><thead> <tr> <th>Items</th> <th scope=col>Expenditure</th> </tr> <tfoot> <tr> <th scope=row>Totals</th> <td>21,000</td> </tr> </table> <table><thead> <tr> <th>Items</th> <th scope=col>Expenditure</th> </tr> </thead></table> <table><tbody> <tr> <th scope=row>Donuts</th> <td>3,000</td> </tr> <tr> <th scope=row>Stationery</th> <td>18,000</td> </tr> </table> <table> <caption>Superheros and sidekicks</caption> <colgroup> <col> <col span=2 class=batman> <col span=2 class=flash> </colgroup> <tr> <td> </td> <th scope=col>Batman</th> <th scope=col>Robin</th> <th scope=col>The Flash</th> <th scope=col>Kid Flash</th> </tr> <tr> <th scope=row>Skill</th> <td>Smarts</td> <td>Dex, acrobat</td> <td>Super speed</td> <td>Super speed</td> </tr> </table> <table> <caption>Superheros and sidekicks</caption> <colgroup> <col> <col span=2 class=batman> <col span=2 class=flash> <tr> <td> </td> <th scope=col>Batman</th> <th scope=col>Robin</th> <th scope=col>The Flash</th> <th scope=col>Kid Flash</th> </tr> </table> <table> <caption>Superheros and sidekicks</caption> <colgroup> <col> <col span=2 class=batman> <col span=2 class=flash> </colgroup><!-- comment --> <tr> <td> </td> <th scope=col>Batman</th> <th scope=col>Robin</th> <th scope=col>The Flash</th> <th scope=col>Kid Flash</th> </tr> </table> <table><caption>Superheros and sidekicks</caption> <colgroup> <col> <col span=2 class=batman> <col span=2 class=flash> </table> <table><caption>Superheros and sidekicks</caption> <colgroup> <col> <col span=2 class=batman> <col span=2 class=flash> </colgroup> <tbody> <tr> <td> </td> <th scope=col>Batman</th> <th scope=col>Robin</th> <th scope=col>The Flash</th> <th scope=col>Kid Flash</th> </tr> </tbody> </table> <table> <caption>He-Man and Skeletor facts</caption> <tr> <td> </td> <th scope=col class=heman>He-Man</th> <th scope=col class=skeletor>Skeletor</th> </tr> <tr> <th scope=row>Role</th> <td>Hero</td> <td>Villain</td> </tr> </table> <table> <caption>He-Man and Skeletor facts<tr> <td> </td> <th scope=col class=heman>He-Man</th> <th scope=col class=skeletor>Skeletor</th> </tr> <tr> <th scope=row>Role</th> <td>Hero</td> <td>Villain</td> </tr> </table> <table> <caption>He-Man and Skeletor facts</caption><!-- comment --> <tr> <td> </td> <th scope=col class=heman>He-Man</th> <th scope=col class=skeletor>Skeletor</th> </tr> <tr> <th scope=row>Role</th> <td>Hero</td> <td>Villain</td> </tr> </table> <ruby> 漢 <rp>(<rt>kan<rp>)</rp> 字 <rp>(<rt>ji<rp>)</rp> </ruby> <ruby>漢 <rp>(<rt>kan<rp>)</rp>字 <rp>(<rt>ji<rp>)</ruby> <div> <p>test</p> <p>test <p>test</p> <p>test</p> <p>test<p>test</p> <p>test<div>test</div> <p>test<div>test</div> <p>test</p><img> </div> <div><p>test</div> <a><p>test</p></a> <my-element><p>Test</p></my-element> <unknown><p>test</p></unknown> <spacer><p>test</p></spacer> <div> <p>test</p><svg/> </div> <acronym><p>test</p></acronym> <applet code=game.class align=left archive=game.zip height=250 width=350> <param name=difficulty value=easy> <p>Sorry, you need Java to play this game.</applet> <big><p>test</p></big> <blink><p>test</p></blink> <center><p>test</center> <command><p>test</p></command> <content><p>test</p></content> <dir><p>test</dir> <element><p>test</p></element> <font><p>test</p></font> <kbd><p>test</p></kbd> <listing><p>test</listing> <marquee behavior=test direction=test><p>test</marquee> <multicol><p>test</p></multicol> <noembed><p>test</p></noembed> <shadow><p>test</p></shadow> <strike><p>test</p></strike> <tt><p>test</p></tt> <xmp><p>test</p></xmp> <div><p>test</p><svg>test</svg></div> <ruby> <rb>漢<rb>字 <rp>(<rt>kan<rt>ji<rp>)</rp> </ruby> <ruby> <rb>漢<rb><rp>(<rt>kan<rt>ji<rp>)</rp> </ruby> <div class=info><ruby> <rbc> <rb>旧<rt>jiù</rt> <rb>金<rt>jīn</rt> <rb>山<rt>shān</rt> </rbc> <rtc>San Francisco</ruby> </div> <table><thead> <tr><th>Customer<th>Order<th>Month</tr> <tbody> <tr><td>Customer 1<td>#1<td>January</tr> <tr><td>Customer 1<td>#2<td>April</tr> <tr><td>Customer 1<td>#3<td>March</tr> <tbody> <tr><td>Customer 2<td>#1<td>January</tr> <tr><td>Customer 2<td>#2<td>April</tr> <tr><td>Customer 2<td>#3<td>March</tr> <tbody> <tr><td>Customer 3<td>#1<td>January</tr> <tr><td>Customer 3<td>#2<td>April</tr> <tr><td>Customer 3<td>#3<td>March</tr> </table> <table><colgroup> <col class=""> <col class=""> <col class=""> <colgroup> <col class=""> <col class=""> <col class=""> <tr> <td>Cell</td> <td>Cell</td> <td>Cell</td> </tr> </table> <table> <col class=""><col class=""><col class=""></colgroup> <tr> <td>Cell</td> <td>Cell</td> <td>Cell</td> </tr> </table> <table> <col class=""><col class=""><col class=""><tr> <td>Cell</td> <td>Cell</td> <td>Cell</td> </tr> </table> <table> <col class=""><col class=""><col class=""><colgroup><col class=""><col class=""><col class=""></colgroup> <tr> <td>Cell</td> <td>Cell</td> <td>Cell</td> </tr> </table> <table><tr><td>test<tbody><tr><td>test<tbody><tr><td>test</table> <table><thead><tr><td>test<tbody><tr><td>test<tbody><tr><td>test</table> <table><tfoot><tr><td>test</tfoot><tbody><tr><td>test<tbody><tr><td>test</table> <p>test</p><rbc>test</rbc> <rbc><p>test</p></rbc> <p>test</p><keygen name=name challenge="challenge string" keytype=type keyparams=pqg-params> <p>test</p><kbd>test</kbd> <kbd><p>test</p></kbd> <p>test</p><isindex> <p>test</p> <p>test</p> <p>test</p><font>test</font> <font><p>test</p></font> <p>test</p><big>test</big> <big><p>test</p></big> <p>test</p><basefont> <p>test</p><acronym title=test>test</acronym> <p>test</p><tt><p>test</p></tt> <tt><p>test</p></tt> <p>test</p><tt>test</tt> <p>test</p><strike>test</strike> <strike><p>test</p></strike> <p>test</p><noframes>test</noframes> <noframes><p>test</p></noframes> <p>test<ul><li>test</ul> <p>test<ol><li>test</ol> <p>test<menu><li>test</menu> <p>test</p><unknown>test</unknown> <unknown><p>test</p></unknown> </isindex>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/p-b/input.html
HTML
<p>test</p><b>test</b>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/p-b/output.html
HTML
<html> <head></head><body><p>test</p><b>test</b></body></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/p-b/output.min.html
HTML
<p>test</p><b>test</b>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/p/input.html
HTML
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> </head> <body> <p>Test</p> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/p/output.html
HTML
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> </head> <body> <p>Test</p> </body></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/p/output.min.html
HTML
<!doctype html><html lang=en><head> <meta charset=UTF-8> <meta name=viewport content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <meta http-equiv=X-UA-Compatible content="ie=edge"> <title>Document</title> </head> <body> <p>Test</p>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/paragraphs/input.html
HTML
<!DOCTYPE html> <html> <body> <p>This is a paragraph.</p> <p>This is another paragraph.</p> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/paragraphs/output.html
HTML
<!DOCTYPE html> <html> <head></head><body> <p>This is a paragraph.</p> <p>This is another paragraph.</p> </body></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/paragraphs/output.min.html
HTML
<!doctype html><body> <p>This is a paragraph.</p> <p>This is another paragraph.</p>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/pre-tag/input.html
HTML
<!DOCTYPE html> <html> <body> <p>The pre tag preserves both spaces and line breaks:</p> <pre> My Bonnie lies over the ocean. My Bonnie lies over the sea. My Bonnie lies over the ocean. Oh, bring back my Bonnie to me. </pre> <pre> <code> Text </code> </pre> <pre>Text</pre> <pre><code> Text </code></pre> <pre> <code> Text </code> </pre> <pre>Text </pre> <pre> Text</pre> <pre><code>Label current; // Load effective address of current instruction into rcx. __ leaq(rcx, Operand(&amp;current)); __ bind(&amp;current); </code></pre> <pre><code>Label current; // Load effective address of current instruction into rcx. __ leaq(rcx, Operand(&amp;current)); __ bind(&amp;current); </code></pre> <pre> <pre>Text </pre> </pre> <pre><pre>Text</pre></pre> <pre> <pre> Text </pre> </pre> <pre> <pre> Text </pre> </pre> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/pre-tag/output.html
HTML
<!DOCTYPE html> <html> <head></head><body> <p>The pre tag preserves both spaces and line breaks:</p> <pre> My Bonnie lies over the ocean. My Bonnie lies over the sea. My Bonnie lies over the ocean. Oh, bring back my Bonnie to me. </pre> <pre> <code> Text </code> </pre> <pre> Text</pre> <pre><code> Text </code></pre> <pre> <code> Text </code> </pre> <pre> Text </pre> <pre> Text</pre> <pre><code>Label current; // Load effective address of current instruction into rcx. __ leaq(rcx, Operand(&amp;current)); __ bind(&amp;current); </code></pre> <pre><code>Label current; // Load effective address of current instruction into rcx. __ leaq(rcx, Operand(&amp;current)); __ bind(&amp;current); </code></pre> <pre><pre> Text </pre> </pre> <pre><pre> Text</pre></pre> <pre><pre> Text </pre> </pre> <pre> <pre> Text </pre> </pre> </body></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/pre-tag/output.min.html
HTML
<!doctype html><body> <p>The pre tag preserves both spaces and line breaks:</p> <pre> My Bonnie lies over the ocean. My Bonnie lies over the sea. My Bonnie lies over the ocean. Oh, bring back my Bonnie to me. </pre> <pre> <code> Text </code> </pre> <pre>Text</pre> <pre><code> Text </code></pre> <pre> <code> Text </code> </pre> <pre> Text </pre> <pre>Text</pre> <pre><code>Label current; // Load effective address of current instruction into rcx. __ leaq(rcx, Operand(&amp;current)); __ bind(&amp;current); </code></pre> <pre><code>Label current; // Load effective address of current instruction into rcx. __ leaq(rcx, Operand(&amp;current)); __ bind(&amp;current); </code></pre> <pre><pre> Text </pre> </pre> <pre><pre>Text</pre></pre> <pre><pre> Text </pre> </pre> <pre> <pre> Text </pre> </pre>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/script-with-close/input.html
HTML
<!DOCTYPE html> <html> <head> </head> <body> <script type="text/javascript"> document.write('<script type="text/javascript">alert(1);</script>'); </script> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/script-with-close/output.html
HTML
<!DOCTYPE html> <html> <head> </head> <body> <script type="text/javascript"> document.write('<script type="text/javascript">alert(1);</script>'); </body></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/script-with-close/output.min.html
HTML
<!doctype html><head> </head> <body> <script type=text/javascript> document.write('<script type="text/javascript">alert(1);</script>');
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/script/input.html
HTML
<!DOCTYPE html> <html> <head> </head> <body> <script type="text/javascript"> document.write('<script type="text/javascript">alert(1);<\x2fscript>'); </script> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/script/output.html
HTML
<!DOCTYPE html> <html> <head> </head> <body> <script type="text/javascript"> document.write('<script type="text/javascript">alert(1);<\x2fscript>'); </script> </body></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/script/output.min.html
HTML
<!doctype html><head> </head> <body> <script type=text/javascript> document.write('<script type="text/javascript">alert(1);<\x2fscript>'); </script>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/self-closing-tags/input.html
HTML
<!-- following are self closing tags --> <!-- have no content or child --> <br /> <hr /> <input type="text" /> <img src="#URL" alt="image" /> <area shape="rect" coords="0,0,100,100" href="#URL" />
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/self-closing-tags/output.html
HTML
<!-- following are self closing tags --><!-- have no content or child --><html> <head></head><body><br /> <hr /> <input type="text" /> <img src="#URL" alt="image" /> <area shape="rect" coords="0,0,100,100" href="#URL" /> </body></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/self-closing-tags/output.min.html
HTML
<!-- following are self closing tags --><!-- have no content or child --><br> <hr> <input type=text> <img src=#URL alt=image> <area shape=rect coords=0,0,100,100 href=#URL>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/svg-tag/input.html
HTML
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> </head> <body> <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"> <image x="90" y="-65" width="128" height="146" transform="rotate(45)" xlink:href="https://developer.mozilla.org/en-US/docs/Web/SVG/Element/image/mdn_logo_only_color.png"/> </svg> <svg width="100" height="100"> <circle cx="50" cy="50" r="40" stroke="green" stroke-width="4" fill="yellow" /> <style> .color::before { content: "&"; } .color { color: red; <!-- test --> } </style> <textarea name="test" id="test" cols="30" rows="10"> test </textarea> </svg> <svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"> <circle cx="50" cy="50" r="50"/> </svg> <svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"> <circle cx="50" cy="50" r="50">NOT ALLOWED< BUT POSSIBLE</circle> </svg> <svg viewBox="0 0 200 100" xmlns="http://www.w3.org/2000/svg"> <ellipse cx="100" cy="50" rx="100" ry="50" /> </svg> <svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"> <line x1="0" y1="80" x2="100" y2="20" stroke="black" /> <!-- If you do not specify the stroke color the line will not be visible --> </svg> <svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"> <path d="M 10,30 A 20,20 0,0,1 50,30 A 20,20 0,0,1 90,30 Q 90,60 50,90 Q 10,60 10,30 z"/> </svg> <svg viewBox="0 0 200 100" xmlns="http://www.w3.org/2000/svg"> <!-- Example of a polygon with the default fill --> <polygon points="0,100 50,25 50,75 100,0" /> <!-- Example of the same polygon shape with stroke and no fill --> <polygon points="100,100 150,25 150,75 200,0" fill="none" stroke="black" /> </svg> <svg viewBox="0 0 200 100" xmlns="http://www.w3.org/2000/svg"> <!-- Example of a polyline with the default fill --> <polyline points="0,100 50,25 50,75 100,0" /> <!-- Example of the same polyline shape with stroke and no fill --> <polyline points="100,100 150,25 150,75 200,0" fill="none" stroke="black" /> </svg> <svg viewBox="0 0 220 100" xmlns="http://www.w3.org/2000/svg"> <!-- Simple rectangle --> <rect width="100" height="100" /> <!-- Rounded corner rectangle --> <rect x="120" width="100" height="100" rx="15" /> </svg> <svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <defs> <linearGradient id="myGradient" gradientTransform="rotate(90)"> <stop offset="5%" stop-color="gold" /> <stop offset="95%" stop-color="red" /> </linearGradient> </defs> <!-- using my linear gradient --> <circle cx="5" cy="5" r="4" fill="url('#myGradient')" /> </svg> <svg viewBox="0 0 30 10" xmlns="http://www.w3.org/2000/svg"> <circle id="myCircle" cx="5" cy="5" r="4" stroke="blue"/> <use href="#myCircle" x="10" fill="blue"/> <use href="#myCircle" x="20" fill="white" stroke="red"/> <!-- stroke="red" will be ignored here, as stroke was already set on myCircle. Most attributes (except for x, y, width, height and (xlink:)href) do not override those set in the ancestor. That's why the circles have different x positions, but the same stroke value. --> </svg> <svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"> <circle cx="50" cy="50" r="&amp;"/> <circle cx="50" cy="50" r=" "/> <circle cx="50" cy="50" r="`"/> <circle cx="50" cy="50" r="="/> <circle cx="50" cy="50" r="<"/> <circle cx="50" cy="50" r=">"/> <circle cx="50" cy="50" r='"'/> <circle cx="50" cy="50" r="'"/> <circle cx="50" cy="50" r="a"/> <circle /> </svg> <svg/> <svg> <unknown></unknown> <unknown/> </svg> <svg xmlns=http://www.w3.org/2000/svg width=2rem height=2rem fill=currentColor class="bi bi-badge-ad" viewBox="0 0 16 16"> <path d="M3.7 11l.47-1.542h2.004L6.644 11h1.261L5.901 5.001H4.513L2.5 11h1.2zm1.503-4.852l.734 2.426H4.416l.734-2.426h.053zm4.759.128c-1.059 0-1.753.765-1.753 2.043v.695c0 1.279.685 2.043 1.74 2.043.677 0 1.222-.33 1.367-.804h.057V11h1.138V4.685h-1.16v2.36h-.053c-.18-.475-.68-.77-1.336-.77zm.387.923c.58 0 1.002.44 1.002 1.138v.602c0 .76-.396 1.2-.984 1.2-.598 0-.972-.449-.972-1.248v-.453c0-.795.37-1.24.954-1.24z"/> <path d="M14 3a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h12zM2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H2z"/> </svg> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/svg-tag/output.html
HTML
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> </head> <body> <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"> <image x="90" y="-65" width="128" height="146" transform="rotate(45)" xlink:href="https://developer.mozilla.org/en-US/docs/Web/SVG/Element/image/mdn_logo_only_color.png" /> </svg> <svg width="100" height="100"> <circle cx="50" cy="50" r="40" stroke="green" stroke-width="4" fill="yellow" /> <style> .color::before { content: "&"; } .color { color: red; <!-- test --> } </style> <textarea name="test" id="test" cols="30" rows="10"> test </textarea> </svg> <svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"> <circle cx="50" cy="50" r="50" /> </svg> <svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"> <circle cx="50" cy="50" r="50">NOT ALLOWED&lt; BUT POSSIBLE</circle> </svg> <svg viewBox="0 0 200 100" xmlns="http://www.w3.org/2000/svg"> <ellipse cx="100" cy="50" rx="100" ry="50" /> </svg> <svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"> <line x1="0" y1="80" x2="100" y2="20" stroke="black" /> <!-- If you do not specify the stroke color the line will not be visible --> </svg> <svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"> <path d="M 10,30 A 20,20 0,0,1 50,30 A 20,20 0,0,1 90,30 Q 90,60 50,90 Q 10,60 10,30 z" /> </svg> <svg viewBox="0 0 200 100" xmlns="http://www.w3.org/2000/svg"> <!-- Example of a polygon with the default fill --> <polygon points="0,100 50,25 50,75 100,0" /> <!-- Example of the same polygon shape with stroke and no fill --> <polygon points="100,100 150,25 150,75 200,0" fill="none" stroke="black" /> </svg> <svg viewBox="0 0 200 100" xmlns="http://www.w3.org/2000/svg"> <!-- Example of a polyline with the default fill --> <polyline points="0,100 50,25 50,75 100,0" /> <!-- Example of the same polyline shape with stroke and no fill --> <polyline points="100,100 150,25 150,75 200,0" fill="none" stroke="black" /> </svg> <svg viewBox="0 0 220 100" xmlns="http://www.w3.org/2000/svg"> <!-- Simple rectangle --> <rect width="100" height="100" /> <!-- Rounded corner rectangle --> <rect x="120" width="100" height="100" rx="15" /> </svg> <svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <defs> <linearGradient id="myGradient" gradientTransform="rotate(90)"> <stop offset="5%" stop-color="gold" /> <stop offset="95%" stop-color="red" /> </linearGradient> </defs> <!-- using my linear gradient --> <circle cx="5" cy="5" r="4" fill="url('#myGradient')" /> </svg> <svg viewBox="0 0 30 10" xmlns="http://www.w3.org/2000/svg"> <circle id="myCircle" cx="5" cy="5" r="4" stroke="blue" /> <use href="#myCircle" x="10" fill="blue" /> <use href="#myCircle" x="20" fill="white" stroke="red" /> <!-- stroke="red" will be ignored here, as stroke was already set on myCircle. Most attributes (except for x, y, width, height and (xlink:)href) do not override those set in the ancestor. That's why the circles have different x positions, but the same stroke value. --> </svg> <svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"> <circle cx="50" cy="50" r="&amp;" /> <circle cx="50" cy="50" r=" " /> <circle cx="50" cy="50" r="`" /> <circle cx="50" cy="50" r="=" /> <circle cx="50" cy="50" r="<" /> <circle cx="50" cy="50" r=">" /> <circle cx="50" cy="50" r="&quot;" /> <circle cx="50" cy="50" r="'" /> <circle cx="50" cy="50" r="a" /> <circle /> </svg> <svg /> <svg> <unknown /> <unknown /> </svg> <svg xmlns="http://www.w3.org/2000/svg" width="2rem" height="2rem" fill="currentColor" class="bi bi-badge-ad" viewBox="0 0 16 16"> <path d="M3.7 11l.47-1.542h2.004L6.644 11h1.261L5.901 5.001H4.513L2.5 11h1.2zm1.503-4.852l.734 2.426H4.416l.734-2.426h.053zm4.759.128c-1.059 0-1.753.765-1.753 2.043v.695c0 1.279.685 2.043 1.74 2.043.677 0 1.222-.33 1.367-.804h.057V11h1.138V4.685h-1.16v2.36h-.053c-.18-.475-.68-.77-1.336-.77zm.387.923c.58 0 1.002.44 1.002 1.138v.602c0 .76-.396 1.2-.984 1.2-.598 0-.972-.449-.972-1.248v-.453c0-.795.37-1.24.954-1.24z" /> <path d="M14 3a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h12zM2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H2z" /> </svg> </body></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/svg-tag/output.min.html
HTML
<!doctype html><html lang=en><head> <meta charset=UTF-8> <meta name=viewport content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <meta http-equiv=X-UA-Compatible content="ie=edge"> <title>Document</title> </head> <body> <svg version=1.1 xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink width=200 height=200> <image x=90 y=-65 width=128 height=146 transform=rotate(45) xlink:href=https://developer.mozilla.org/en-US/docs/Web/SVG/Element/image/mdn_logo_only_color.png /> </svg> <svg width=100 height=100> <circle cx=50 cy=50 r=40 stroke=green stroke-width=4 fill=yellow /> <style> .color::before { content: "&"; } .color { color: red; <!-- test --> } </style> <textarea name=test id=test cols=30 rows=10> test </textarea> </svg> <svg viewBox="0 0 100 100" xmlns=http://www.w3.org/2000/svg> <circle cx=50 cy=50 r=50 /> </svg> <svg viewBox="0 0 100 100" xmlns=http://www.w3.org/2000/svg> <circle cx=50 cy=50 r=50>NOT ALLOWED&lt; BUT POSSIBLE</circle> </svg> <svg viewBox="0 0 200 100" xmlns=http://www.w3.org/2000/svg> <ellipse cx=100 cy=50 rx=100 ry=50 /> </svg> <svg viewBox="0 0 100 100" xmlns=http://www.w3.org/2000/svg> <line x1=0 y1=80 x2=100 y2=20 stroke=black /> <!-- If you do not specify the stroke color the line will not be visible --> </svg> <svg viewBox="0 0 100 100" xmlns=http://www.w3.org/2000/svg> <path d="M 10,30 A 20,20 0,0,1 50,30 A 20,20 0,0,1 90,30 Q 90,60 50,90 Q 10,60 10,30 z"/> </svg> <svg viewBox="0 0 200 100" xmlns=http://www.w3.org/2000/svg> <!-- Example of a polygon with the default fill --> <polygon points="0,100 50,25 50,75 100,0"/> <!-- Example of the same polygon shape with stroke and no fill --> <polygon points="100,100 150,25 150,75 200,0" fill=none stroke=black /> </svg> <svg viewBox="0 0 200 100" xmlns=http://www.w3.org/2000/svg> <!-- Example of a polyline with the default fill --> <polyline points="0,100 50,25 50,75 100,0"/> <!-- Example of the same polyline shape with stroke and no fill --> <polyline points="100,100 150,25 150,75 200,0" fill=none stroke=black /> </svg> <svg viewBox="0 0 220 100" xmlns=http://www.w3.org/2000/svg> <!-- Simple rectangle --> <rect width=100 height=100 /> <!-- Rounded corner rectangle --> <rect x=120 width=100 height=100 rx=15 /> </svg> <svg viewBox="0 0 10 10" xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink> <defs> <linearGradient id=myGradient gradientTransform=rotate(90)> <stop offset=5% stop-color=gold /> <stop offset=95% stop-color=red /> </linearGradient> </defs> <!-- using my linear gradient --> <circle cx=5 cy=5 r=4 fill="url('#myGradient')"/> </svg> <svg viewBox="0 0 30 10" xmlns=http://www.w3.org/2000/svg> <circle id=myCircle cx=5 cy=5 r=4 stroke=blue /> <use href=#myCircle x=10 fill=blue /> <use href=#myCircle x=20 fill=white stroke=red /> <!-- stroke="red" will be ignored here, as stroke was already set on myCircle. Most attributes (except for x, y, width, height and (xlink:)href) do not override those set in the ancestor. That's why the circles have different x positions, but the same stroke value. --> </svg> <svg viewBox="0 0 100 100" xmlns=http://www.w3.org/2000/svg> <circle cx=50 cy=50 r=& /> <circle cx=50 cy=50 r=" "/> <circle cx=50 cy=50 r="`"/> <circle cx=50 cy=50 r="="/> <circle cx=50 cy=50 r="<"/> <circle cx=50 cy=50 r=">"/> <circle cx=50 cy=50 r='"'/> <circle cx=50 cy=50 r="'"/> <circle cx=50 cy=50 r=a /> <circle/> </svg> <svg/> <svg> <unknown/> <unknown/> </svg> <svg xmlns=http://www.w3.org/2000/svg width=2rem height=2rem fill=currentColor class="bi bi-badge-ad" viewBox="0 0 16 16"> <path d="M3.7 11l.47-1.542h2.004L6.644 11h1.261L5.901 5.001H4.513L2.5 11h1.2zm1.503-4.852l.734 2.426H4.416l.734-2.426h.053zm4.759.128c-1.059 0-1.753.765-1.753 2.043v.695c0 1.279.685 2.043 1.74 2.043.677 0 1.222-.33 1.367-.804h.057V11h1.138V4.685h-1.16v2.36h-.053c-.18-.475-.68-.77-1.336-.77zm.387.923c.58 0 1.002.44 1.002 1.138v.602c0 .76-.396 1.2-.984 1.2-.598 0-.972-.449-.972-1.248v-.453c0-.795.37-1.24.954-1.24z"/> <path d="M14 3a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h12zM2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H2z"/> </svg>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/table-p/input.html
HTML
<!doctype HTML> <html lang="en"> <head> <title>test</title> </head> <body> <table></table><a>1</a><p>23</p> <a>1</a><p>23</p><table></table> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/table-p/output.html
HTML
<!DOCTYPE html> <html lang="en"> <head> <title>test</title> </head> <body> <table></table><a>1</a><p>23</p> <a>1</a><p>23</p><table></table> </body></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/table-p/output.min.html
HTML
<!doctype html><html lang=en><head> <title>test</title> </head> <body> <table></table><a>1</a><p>23</p> <a>1</a><p>23<table></table>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/table-with-title/input.html
HTML
<!doctype html><table><title>X</title></table>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/table-with-title/output.html
HTML
<!DOCTYPE html> <html> <head></head><body><title>X</title><table></table></body></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/table-with-title/output.min.html
HTML
<!doctype html><body><title>X</title><table></table>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/tag/input.html
HTML
<div>test</div> <DIV>test</DIV> <dIv>test</DiV> <br> <Br> <BR> <BR/>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/tag/output.html
HTML
<html> <head></head><body><div>test</div> <div>test</div> <div>test</div> <br> <br> <br> <br /> </body></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/tag/output.min.html
HTML
<div>test</div> <div>test</div> <div>test</div> <br> <br> <br> <br>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/title-in-body/input.html
HTML
<!doctype html></body><title>X</title>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/title-in-body/output.html
HTML
<!DOCTYPE html> <html> <head></head><body><title>X</title></body></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/title-in-body/output.min.html
HTML
<!doctype html><body><title>X</title>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/u/input.html
HTML
<p><b><i><u>1</u></i></b></p> <p>X
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/u/output.html
HTML
<html> <head></head><body><p><b><i><u>1</u></i></b></p> <p>X</p></body></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/fixture/u/output.min.html
HTML
<p><b><i><u>1</u></i></b></p> <p>X
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/options/indent_type/input.html
HTML
<!DOCTYPE html> <html> <body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/options/indent_type/output.html
HTML
<!DOCTYPE html> <html> <head></head><body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/options/indent_width/input.html
HTML
<!DOCTYPE html> <html> <body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_codegen/tests/options/indent_width/output.html
HTML
<!DOCTYPE html> <html> <body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University