Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Add tests for xmlns & xmlns:xlink parse errors #174

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
Loading
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
162 changes: 162 additions & 0 deletions 162 tree-construction/xmlns-errors.dat
Original file line number Diff line number Diff line change
@@ -0,0 +1,162 @@
#data
<!doctype html><svg xmlns="http://www.w3.org/2000/svg"></svg>
#errors
#document
| <!DOCTYPE html>
| <html>
| <head>
| <body>
| <svg svg>
| xmlns="http://www.w3.org/2000/svg"

#data
<!doctype html><math xmlns="http://www.w3.org/1998/Math/MathML"></math>
#errors
#document
| <!DOCTYPE html>
| <html>
| <head>
| <body>
| <math math>
| xmlns="http://www.w3.org/1998/Math/MathML"

#data
<!doctype html><svg xmlns:xlink="http://www.w3.org/1999/xlink"></svg>
#errors
#document
| <!DOCTYPE html>
| <html>
| <head>
| <body>
| <svg svg>
| xmlns:xlink="http://www.w3.org/1999/xlink"

#data
<!doctype html><html xmlns="totally not html"></html>
#errors
#document
| <!DOCTYPE html>
| <html>
| xmlns="totally not html"
| <head>
| <body>

#data
<!doctype html><html xmlns:xlink="totally not xlink"></html>
#errors
#document
| <!DOCTYPE html>
| <html>
| xmlns:xlink="totally not xlink"
| <head>
| <body>

#data
<!doctype html><svg xmlns="totally not svg"></svg>
#errors
xmlns mismatch
#document
| <!DOCTYPE html>
| <html>
| <head>
| <body>
| <svg svg>
| xmlns="totally not svg"

#data
<!doctype html><math xmlns="totally not mathml"></math>
#errors
xmlns mismatch
#document
| <!DOCTYPE html>
| <html>
| <head>
| <body>
| <math math>
| xmlns="totally not mathml"

#data
<!doctype html><svg xmlns:xlink="totally not xlink"></svg>
#errors
xmlns:xlink mismatch
#document
| <!DOCTYPE html>
| <html>
| <head>
| <body>
| <svg svg>
| xmlns:xlink="totally not xlink"

#data
<!doctype html><math xmlns:xlink="totally not xlink"></math>
#errors
xmlns:xlink mismatch
#document
| <!DOCTYPE html>
| <html>
| <head>
| <body>
| <math math>
| xmlns:xlink="totally not xlink"

#data
<!doctype html><svg xmlns="totally not svg" xmlns:xlink="totally not xlink"></svg>
#errors
xmlns mismatch
xmlns:xlink mismatch
#document
| <!DOCTYPE html>
| <html>
| <head>
| <body>
| <svg svg>
| xmlns="totally not svg"
| xmlns:xlink="totally not xlink"

#data
<!doctype html><svg xmlns="Http://www.w3.org/2000/svg"></svg>
#errors
xmlns mismatch
#document
| <!DOCTYPE html>
| <html>
| <head>
| <body>
| <svg svg>
| xmlns="Http://www.w3.org/2000/svg"

#data
<!doctype html><svg xmlns:xlink="Http://www.w3.org/2000/svg"></svg>
#errors
xmlns:xlink mismatch
#document
| <!DOCTYPE html>
| <html>
| <head>
| <body>
| <svg svg>
| xmlns:xlink="Http://www.w3.org/2000/svg"

#data
<!doctype html><svg xmlns></svg>
#errors
xmlns mismatch
#document
| <!DOCTYPE html>
| <html>
| <head>
| <body>
| <svg svg>
| xmlns=""

#data
<!doctype html><svg xmlns:xlink></svg>
#errors
xmlns:xlink mismatch
#document
| <!DOCTYPE html>
| <html>
| <head>
| <body>
| <svg svg>
| xmlns:xlink=""
Morty Proxy This is a proxified and sanitized view of the page, visit original site.