Florian Rappl, MVP Visual C#
The .NET world has definitely longed for a comprehensive functional DOM model, which is something I never had the energy to do with my own project!
Jamie Treworgy
Created CsQuery
* discussion postponed.
<!DOCTYPE html>
<html lang=en>
<meta charset=utf-8>
<meta name=viewport content="initial-scale=1, ...">
<title>Error 404 (Not Found)!!1</title>
<style>/* ... */</style>
<a href=//www.google.com/><span id=logo aria-label=Google></span></a>
<p><b>404.</b> <ins>That’s an error.</ins>
<p>The requested URL <code>/error</code> was not found on this server.
<ins>That’s all we know.</ins>
head
and body
insertedp
applies to scoping
button
in, e.g. html
]li
in, e.g. ul
]p
in, button
]tr
in, e.g., table
]select
in, e.g. option
]
<p>1<b>2<i>3</b>4</i>5</p>
<p>1<b>2<i>3</b>4</i>5</p>
script
tags do not necessarily have to go downdefer
and async
document.write
!
media
attribute for switching on / off:
<link rel="stylesheet" href="css.css" media="none"
onload="if(media!='all')media='all'">
GET /docs/index.html HTTP/1.1
Host: www.test101.com
Accept: image/gif, image/jpeg, */*
Accept-Language: en-us
Accept-Encoding: gzip, deflate
User-Agent: Mozilla
HTTP/1.1 200 OK
Date: Sun, 26 Jul 2015 08:56:53 GMT
Server: Apache/2.2.14 (Win32)
Last-Modified: Thu, 20 Nov 2014 07:16:26 GMT
ETag: "10000000565a5-2c-3e94b66c2e680"
Accept-Ranges: bytes
Content-Length: 44
Connection: close
Content-Type: text/html
X-Pad: avoid browser bug
<html><body><h1>It works!</h1></body></html>
There are more verbs specified, but they are (rarely / never) used.
<source>
would break <img>
<picture>
<source
media="(min-width: 650px)"
srcset="images/kitten-stretching.png">
<source
media="(min-width: 465px)"
srcset="images/kitten-sitting.png">
<img
src="images/kitten-curled.png"
alt="a cute kitten">
</picture>
<picture>
<source media="(min-width: 650px)"
srcset="images/kitten-stretching.png,
images/kitten-stretching@1.5x.png 1.5x,
images/kitten-stretching@2x.png 2x">
<source media="(min-width: 465px)"
srcset="images/kitten-sitting.png,
images/kitten-sitting@1.5x.png 1.5x
images/kitten-sitting@2x.png 2x">
<img src="images/kitten-curled.png"
srcset="images/kitten-curled@1.5x.png 1.5x,
images/kitten-curled@2x.png 2x">
</picture>
script
tags