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...
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 sig...
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...
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> <msp...
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> <ms...
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...
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...
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...
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><...
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> </bod...
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 elemen...
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 typ...
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/s...
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...
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...
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...
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>tes...
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>...
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><...
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> <pr...
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> T...
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>...
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 versio...
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" xm...
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://w...
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