popcode icon indicating copy to clipboard operation
popcode copied to clipboard

In HTML, missing opening quotation mark causes everything else to get ignored by validator

Open outoftime opened this issue 9 years ago • 0 comments

<!DOCTYPE html>
<html>
    <head>
<title>Page Title</title>
    </head>  
<div id=red"
</div>
<div id=blue>
</div>
<div id=yellow>
</div>
<div id=black>
</div>

Not only does this not throw a validation error, but nothing after the id=red" line is validated at all.

outoftime avatar Oct 22 '16 13:10 outoftime