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_minifier/tests/recovery/attribute/broken/output.min.html
HTML
<a b="="></a>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/recovery/attribute/duplicate/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> <div ...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/recovery/attribute/duplicate/output.min.html
HTML
<!doctype html><html lang=en><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><div data-test=one></div> <img src=test.png alt=one> <img src=test.png alt=o...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/recovery/doctype/html-4_01/input.html
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd" > <html> <head> <title>!DOCTYPE</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> </head> <body> <p>Test</p> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/recovery/doctype/html-4_01/output.min.html
HTML
<!doctype html public "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"><title>!DOCTYPE</title><meta http-equiv=Content-Type content="text/html; charset=utf-8"><p>Test
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/recovery/doctype/html4-force-html5-doctype/input.html
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <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_minifier/tests/recovery/doctype/html4-force-html5-doctype/output.min.html
HTML
<!doctype html><h1>My First Heading</h1> <p>My first paragraph.
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/recovery/element/head/input.html
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head profile=" http://gmpg.org/xfn/11 "> <title>XFN</title> </head> <body> <p><a href="http://jeff.org" rel="friend met"> My friend Jeff </a></p> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/recovery/element/head/output.min.html
HTML
<!doctype html public "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"><head profile=http://gmpg.org/xfn/11><title>XFN</title><p><a href=http://jeff.org rel="friend met"> My friend Jeff </a>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/recovery/element/pre/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> <pre> ...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/recovery/element/pre/output.min.html
HTML
<!doctype html><html lang=en><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><pre> test a </pre> <svg> </svg><pre> ...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/recovery/text/in-head/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> Test </head> <body> <...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/recovery/text/in-head/output.min.html
HTML
<!doctype html><html lang=en><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>Test
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/benches/compare.rs
Rust
extern crate swc_malloc; use codspeed_criterion_compat::{black_box, criterion_group, criterion_main, Bencher, Criterion}; use swc_common::{input::StringInput, FileName, Span, DUMMY_SP}; use swc_html_ast::{Document, DocumentFragment, DocumentMode, Element, Namespace}; use swc_html_parser::{lexer::Lexer, parser::Parser}...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/benches/files/css_2021_spec.html
HTML
<!doctype html><html lang="en"> <head> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"> <title>CSS Snapshot 2021</title> <meta content="NOTE" name="w3c-status"> <meta content="Bikeshed version 1f1661843,...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/benches/files/github_com_17_05_2022.html
HTML
<!DOCTYPE html> <html lang="en" > <head> <meta charset="utf-8"> <link rel="dns-prefetch" href="https://github.githubassets.com"> <link rel="dns-prefetch" href="https://avatars.githubusercontent.com"> <link rel="dns-prefetch" href="https://github-cloud.s3.amazonaws.com"> <link rel="dns-prefetch" hre...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/benches/files/stackoverflow_com_17_05_2022.html
HTML
<!DOCTYPE html> <html class="html__responsive html__unpinned-leftnav" lang="en"> <head> <title>Stack Overflow - Where Developers Learn, Share, &amp; Build Careers</title> <link rel="shortcut icon" href="https://cdn.sstatic.net/Sites/stackoverflow/Img/favicon.ico?v=ec617d715196"> <link rel="apple-touch-...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/benches/lexer.rs
Rust
extern crate swc_malloc; use codspeed_criterion_compat::{black_box, criterion_group, criterion_main, Bencher, Criterion}; use swc_common::{input::StringInput, FileName}; use swc_html_parser::lexer::Lexer; fn bench_document(b: &mut Bencher, src: &'static str) { let _ = ::testing::run_test(false, |cm, _| { ...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/benches/parser.rs
Rust
extern crate swc_malloc; use codspeed_criterion_compat::{black_box, criterion_group, criterion_main, Bencher, Criterion}; use swc_common::{input::StringInput, FileName}; use swc_html_ast::{DocumentMode, Element, Namespace}; use swc_html_parser::{lexer::Lexer, parser::Parser}; fn bench_document(b: &mut Bencher, src: &...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/src/error.rs
Rust
use std::borrow::Cow; use swc_atoms::Atom; use swc_common::{ errors::{DiagnosticBuilder, Handler}, Span, }; /// Size is same as a size of a pointer. #[derive(Debug, Clone, PartialEq, Eq)] pub struct Error { inner: Box<(Span, ErrorKind)>, } impl Error { pub fn kind(&self) -> &ErrorKind { &self...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/src/lexer/mod.rs
Rust
use std::{cell::RefCell, char::REPLACEMENT_CHARACTER, collections::VecDeque, mem::take, rc::Rc}; use rustc_hash::FxHashSet; use swc_atoms::{atom, Atom}; use swc_common::{input::Input, BytePos, Span}; use swc_html_ast::{AttributeToken, Raw, Token, TokenAndSpan}; use swc_html_utils::{Entity, HTML_ENTITIES}; use crate::...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/src/lib.rs
Rust
#![cfg_attr(docsrs, feature(doc_cfg))] #![deny(unused_must_use)] #![deny(clippy::all)] #![allow(clippy::needless_return)] #![allow(clippy::nonminimal_bool)] #![allow(clippy::wrong_self_convention)] #![allow(clippy::match_like_matches_macro)] use swc_common::{input::StringInput, SourceFile}; use swc_html_ast::{Document...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/src/macros.rs
Rust
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/src/parser/active_formatting_element_stack.rs
Rust
use swc_html_ast::Token; use crate::parser::{is_same_node, RcNode, TokenAndInfo}; #[derive(Debug)] pub enum ActiveFormattingElement { Element(RcNode, TokenAndInfo), Marker, } pub struct ActiveFormattingElementStack { pub items: Vec<ActiveFormattingElement>, } impl ActiveFormattingElementStack { pub ...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/src/parser/doctypes.rs
Rust
pub static LIMITED_QUIRKY_PUBLIC_PREFIXES: &[&str] = &[ "-//w3c//dtd xhtml 1.0 frameset//", "-//w3c//dtd xhtml 1.0 transitional//", ]; pub static HTML4_PUBLIC_PREFIXES: &[&str] = &[ "-//w3c//dtd html 4.01 frameset//", "-//w3c//dtd html 4.01 transitional//", ]; pub static QUIRKY_PUBLIC_PREFIXES: &[&str...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/src/parser/input.rs
Rust
use std::{fmt::Debug, mem::take}; use swc_atoms::Atom; use swc_common::{BytePos, Span}; use swc_html_ast::{Token, TokenAndSpan}; use super::PResult; use crate::{error::Error, lexer::State}; pub trait ParserInput: Iterator<Item = TokenAndSpan> { fn start_pos(&mut self) -> BytePos; fn last_pos(&mut self) -> B...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/src/parser/macros.rs
Rust
macro_rules! span { ($parser:expr, $start:expr) => {{ let last_pos = $parser.input.last_pos()?; swc_common::Span::new($start, last_pos) }}; } macro_rules! bump { ($parser:expr) => { $parser.input.bump()?.unwrap().token }; } macro_rules! get_tag_name { ($node:expr) => {{ ...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/src/parser/mod.rs
Rust
use std::{cell::RefCell, mem, rc::Rc}; use active_formatting_element_stack::*; use doctypes::*; use node::*; use open_elements_stack::*; use swc_atoms::Atom; use swc_common::{Span, DUMMY_SP}; use swc_html_ast::*; use self::input::{Buffer, ParserInput}; use crate::{ error::{Error, ErrorKind}, lexer::State, }; ...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/src/parser/node.rs
Rust
use std::{ cell::{Cell, RefCell}, fmt, mem, rc::{Rc, Weak}, }; use swc_atoms::Atom; use swc_common::Span; use swc_html_ast::*; #[derive(Debug, Clone)] pub struct TokenAndInfo { pub span: Span, pub acknowledged: bool, pub token: Token, } #[derive(Debug, Clone)] pub enum Data { Document { ...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/src/parser/open_elements_stack.rs
Rust
use swc_html_ast::*; use crate::parser::{ is_html_integration_point, is_mathml_text_integration_point, is_same_node, Data, RcNode, }; static IMPLICIT_END_TAG_REQUIRED: &[&str] = &[ "dd", "dt", "li", "optgroup", "option", "p", "rb", "rp", "rt", "rtc", ]; static IMPLICIT_END_TAG_REQUIRED_THOROUGHLY: &[&str] = ...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/common/mod.rs
Rust
use std::path::PathBuf; use swc_common::{errors::Handler, input::SourceFileInput, Spanned}; use swc_html_ast::*; use swc_html_parser::{ lexer::Lexer, parser::{PResult, Parser, ParserConfig}, }; use swc_html_visit::{Visit, VisitMut, VisitMutWith, VisitWith}; use testing::NormalizedOutput; #[allow(dead_code)] p...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture.rs
Rust
#![deny(warnings)] #![allow(clippy::if_same_then_else)] #![allow(clippy::needless_update)] #![allow(clippy::redundant_clone)] #![allow(clippy::while_let_on_iterator)] use std::path::PathBuf; use common::{document_dom_visualizer, document_span_visualizer}; use crate::common::document_test; #[path = "common/mod.rs"] ...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/attribute/basic/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body> <a 0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s t u v w x y z></a> <p title=" <![CDATA[ \n\n foobar baz ]]> ">x</p> <p title=" <!-- hello world --> ">x</p> <tag v-ref:vm_pv :imgs=" objpicsurl_ "></tag> <br a=\u00A0 b="&nbsp...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/attribute/class/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body> <a class="0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s t u v w x y z"></a> <a class="add sort keys createSorter"></a> <span class="sprite sprite-{{sprite}}"></span> <span class="{{sprite}}-sprite sprite"></sp...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/attribute/no-quotes/input.html
HTML
<!DOCTYPE html> <html> <body> <a href=https://www.w3schools.com>This is a link</a> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/attribute/quotes-in-meta/input.html
HTML
<!doctype html> <html lang="en"> <head> <meta http-equiv="Content-Type" content='charset="windows-1251'> <title>Document</title> </head> <body> test </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/attribute/title/input.html
HTML
<!DOCTYPE html> <html> <body> <h2 title="I'm a header">The title Attribute</h2> <p title="I'm a tooltip">Mouse over this paragraph, to display the title attribute as a tooltip.</p> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/comment/after-body/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> Test </body...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/comment/basic-1/input.html
HTML
<!DOCTYPE html> <html> <body> <!--This is a comment--> <!-- This is a comment --> <p>This is a paragraph.</p> <!-- Comments are not displayed in the browser --> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/comment/basic/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body> <!-- test --> <!-- foo --><div>baz</div><!-- bar moo --> <script><!-- alert(1) --></script> <script>alert('<!--')</script> <script>alert('<!-- foo -->')</script> <script>alert('-->')</script> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/comment/ie-conditional/input.html
HTML
<!DOCTYPE html> <html> <body> <!--[if IE 5]>This is IE 5<br><![endif]--> <!--[if IE 6]>This is IE 6<br><![endif]--> <!--[if IE 7]>This is IE 7<br><![endif]--> <!--[if IE 8]>This is IE 8<br><![endif]--> <!--[if IE 9]>This is IE 9<br><![endif]--> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/comment/multiline/input.html
HTML
<!DOCTYPE html> <html> <body> <p>This is a paragraph.</p> <!-- <p>Look at this cool image:</p> <img border="0" src="pic_trulli.jpg" alt="Trulli"> --> <p>This is a paragraph too.</p> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/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_parser/tests/fixture/document_type/legacy/input.html
HTML
<!DOCTYPE html SYSTEM "about:legacy-compat"> <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</titl...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/document_type/lowercase/input.html
HTML
<!doctype html> <html> <head> <title>Title of the document</title> </head> <body> The content of the document...... </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/document_type/uppercase/input.html
HTML
<!DOCTYPE html> <html> <head> <title>Title of the document</title> </head> <body> The content of the document...... </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/a/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body> <a href="https://example.com">First</a> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/basic/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body> <div></div> <div><div></div></div> <div></div><div></div> <br> <br /> <h:ællæ></h:ællæ> <div ⚡></div> <some-tag-1></some-tag-1><some-tag-2></some-tag-2> <a href="test.html"><div>hey</div></a> <CUSTOM-TAG></CUSTOM-TAG><div>Hello :)</div> ...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/body/input.html
HTML
<!doctype html><html lang="en"><head><title>Document</title></head><body><div>test</div><p>test</p><p>Test</body></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/br/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body> <p> O'er all the hilltops<br> Is quiet now,<br> In all the treetops<br> Hearest thou<br> Hardly a breath;<br> The birds are asleep in the trees:<br> Wait, soon like these<br> Thou too shalt rest.<br/> </p> <...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/button/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body> <button><p></button>x </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/caption/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body> <table> <caption>Example Caption</caption> <tr> <th>Login</th> <th>Email</th> </tr> <tr> <td>user1</td> <td>user1@sample.com</td> </tr> <tr> <td>user2</td> <td>user2...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/code/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body> <code some-attribute=""><div><code><code><code><code></code></code></code></code></div></code> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/colgroup/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body> <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...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/custom-element/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body> <popup-info img="img/alt.png" data-text="Your card validation code (CVC) is an extra security feature — it is the last 3 or 4 numbers on the back of your card."></popup-info> <custom-square l="100" c="red"></custom-square> <app-dra...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/dialog/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body> <dialog open> <p>Greetings, one and all!</p> </dialog> <dialog>Test</dialog> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/div/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body> <div>Test</div> <div>One</div><div>Two</div> <div><div>Three</div></div> <div><h1>Test</h1></div> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/embed/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body> <embed type="vide/webm" src="/media/examples/flower.mp4" width="200" height="200"> <noembed> <h1>Alternative content</h1> </noembed> <embed type="video/webm" src="/media/cc0-videos/flower.mp4" ...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/form/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body> <form action="" method="get" class="form-example"> <div class="form-example"> <label for="name">Enter your name: </label> <input type="text" name="name" id="name" required> </div> <div class="form-example"> ...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/frameset/input.html
HTML
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Тег FRAMESET</title> </head> <frameset rows="80,*" cols="*"> <frame src="top.html" name="topFrame" scrolling="no" noresize> <frameset cols="80,*"> <frame src="left.html" name="leftFrame" scr...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/head/input.html
HTML
<!doctype html> <html lang="en"> <head><title>Document</title></head> <body> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/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_parser/tests/fixture/element/html/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/iframe/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body> <iframe src="test.html" frameborder="0"></iframe> <iframe src="banner.html" width="468" height="60" align="left"> Text </iframe> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/img/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_parser/tests/fixture/element/isindex/input.html
HTML
<!doctype html><isindex>x</isindex>x
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/lists/input.html
HTML
<!DOCTYPE html> <html> <body> <h2 data-test="test">An Unordered HTML List</h2> <ul> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ul> <h2>An Ordered HTML List</h2> <ol> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ol> <ul> <li>item1 <li>item2 </ul> <ul> <li>item1 ...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/main/input.html
HTML
<!doctype html><main><p>foo</main>bar
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/marquee/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body> <marquee>This text will scroll from right to left</marquee> <marquee direction="up">This text will scroll from bottom to top</marquee> <marquee direction="down" width="250" height="200" behavior="alternate" style="border:solid"> <m...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/math-1/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body> <div style="display:none"> <div><math id="m1"><mtext/></math></div> <div id="d1"><math><mrow/><mi/></math></div> <div id="d2"><math><mrow><mrow><mn>1</mn></mrow><mi>a</mi></mrow></math></div> <div id="d3">&lang;&rang;</di...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/math/input.html
HTML
<!DOCTYPE html> <html> <head> <title>MathML in HTML5</title> </head> <body> <math> <mrow> <mrow> <msup> <mi>a</mi> <mn>2</mn> </msup> <mo>+</mo> <msup> <mi>b</mi> <mn>2</mn> </msu...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/no-basic/input.html
HTML
<!DOCTYPE html> <title>Saving money, saving bytes</title> <p>Qed.
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/no-body/input.html
HTML
<!doctype html><head><title>Document</title></head><p>Test</p>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/no-head-and-body/input.html
HTML
<!doctype html><html lang="en"><p>test</p></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/no-head/input.html
HTML
<!doctype html><body><p>Test</p></body>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/no-html/input.html
HTML
<!doctype html><head><title>Document</title></head><body><p>Test</p></body>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/noscript/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body> <noscript> <!-- anchor linking to external file --> <a href="https://www.mozilla.org/">External Link</a> </noscript> <a href="https://www.mozilla.org/">External Link</a> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/object/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body> <object type="image/svg+xml" data="image.svg"><div>[fallback image]</div></object> <object data="horse.wav"> <param name="autoplay" value="true"> </object> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/p-1/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_parser/tests/fixture/element/p-2/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body> <p><table></table> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/p/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body> <p>Test</p> <p> Test Test </p> <p>One <p>Two <p><object><param><ins><map><a href="/">Apples</a></map></ins></object></p> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/pre-1/input.html
HTML
<!DOCTYPE html><pre> A</pre>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/pre-2/input.html
HTML
<!DOCTYPE html><pre> A</pre>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/pre-3/input.html
HTML
<!doctype html> <html> <body> <pre> <code> Text </code> </pre> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/pre/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> <pre> L ...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/ruby-1/input.html
HTML
<!doctype html><html><ruby>a<rb>b<rt></ruby></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/ruby-2/input.html
HTML
<!doctype html><html><ruby>a<rb>b<rtc></ruby></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/ruby/input.html
HTML
<!doctype html><html><ruby>a<rb>b<rb></ruby></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/script-cdata/input.html
HTML
<!doctype html> <script type="text/javascript"> //<![CDATA[ document.write("<"); //]]> </script> <script> let foo = "<!--<script>-->"; console.log(foo); </script>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/script/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> <script>console.log("test");</script> </head> <body> <script type="text/html"> <div> test </div> <!-- aa -->\n </script> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/select/input.html
HTML
<!doctype html> <select><option>foo</option><option>bar</option></select> <select><option>foo<option>bar</select> <select><option>foo</select> <select> <option>foo</option> <option>bar</option><option>foo</select> <select><optgroup label="Group 1"><option>Option 1.1</option></optgroup> <optgroup label="Group 2"><option...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/svg/input.html
HTML
<!doctype html><html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>XTech SVG Demo</title> <style> stop.begin { stop-color:yellow; } stop.end { stop-color:green; } body.invalid stop.end { stop-color:red; } #err { display:none; } body.invalid #err { display:inline; } ...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/table/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> <table>...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/template-1/input.html
HTML
<!DOCTYPE HTML><template><tr><td>cell</td></tr></template>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/template-2/input.html
HTML
<!DOCTYPE HTML><template> <tr> <td>cell</td> </tr> </template>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/template/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body> <template id="element-details-template"> <style> details {font-family: "Open Sans Light", Helvetica, Arial, sans-serif } .name {font-weight: bold; color: #217ac0; font-size: 120% } h4 { ...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/textarea/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body> <label for="story">Tell us your story:</label> <textarea id="story" name="story" rows="5" cols="33"> test test test </textarea> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/element/ul/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body> <ul><li>test</li> <li>test</li><li>Test</ul> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/text/basic/input.html
HTML
<!doctype html> Text <div>Text</div> <div> Text </div> <div> Text Text </div> <div>Text Text</div> Test &amp; Test &#38; Test &Afr; Test &Kscr; & test &testtesttest &#1234; &#x1234; &#x2014; &#X2014; FOO&#x0078;ZOO &#x2014; &ThickSpace;
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_parser/tests/fixture/text/bom/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> <div>Test<...
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University