This is the state of Document, HTMLDocument, SVGDocument and XMLDocument interfaces on the web platform as of September 2016. Main spec issues:
See the timeline for history and tests for current behavior.
| /* | |
| FILE ARCHIVED ON 14:58:33 Sep 1, 2011 AND RETRIEVED FROM THE | |
| INTERNET ARCHIVE ON 20:49:32 Sep 17, 2016. | |
| JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE. | |
| ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C. | |
| SECTION 108(a)(3)). | |
| */ | |
| var loadX = 0; | |
| var loadY = 0; |
| page | url | |
|---|---|---|
| http://www.1tv.ge/ | http://1tv.ge/theme/back2/js/jquery.parsley/parsley.js | |
| http://www.insectashoes.com/ | http://a1.vnda.com.br/insectashoes/javascripts/libs/parsley.js?1431091685 | |
| http://www.artlab.club/ | http://artlab.club/_run/assets/ddfeacac7e5d3337094913bf538acb5a.js | |
| http://www.babbler.me/ | http://babbler.me/_run/assets/18610f89/parsley.js | |
| http://www.broadlink.com.np/ | http://broadlink.com.np/assets/site/js/parsley.js | |
| http://www.redirectme.net/ | http://d394491aozrvw2.cloudfront.net/assets/js/parsley.js | |
| http://www.hopto.org/ | http://d394491aozrvw2.cloudfront.net/assets/js/parsley.js | |
| http://www.no-ip.com/ | http://d394491aozrvw2.cloudfront.net/assets/js/parsley.js | |
| http://www.opendn.xyz/ | http://d394491aozrvw2.cloudfront.net/assets/js/parsley.js |
| page | url | |
|---|---|---|
| http://www.aminata.com/ | http://prod-player-250.zenoradio.com/widget/type/default/js/combined.js?v=3 | |
| http://www.blokdust.com/ | https://www.blokdust.com/App.js | |
| http://www.boardgame-online.com/ | http://www.boardgame-online.com/g/js/lib_16_06_29.js | |
| http://www.brid.tv/ | https://static.veeps.io/veeps/build/plugins/rtc.api.js | |
| http://www.buscadordetrabajo.es/ | https://buscadordetrabajo.es/xirsys/thirdparty/simplewebrtc.bundle.js | |
| http://www.camdolls.com/ | http://static.camdolls.com/dist/app.js?v=1e2d4ccc | |
| http://www.camzap.com/ | http://static.camdolls.com/dist/app.js?v=1e2d4ccc | |
| http://www.crokepark.ie/ | https://crokepark.ie/stadiumplan2/js/map18.js?CZAYB=1495351566 | |
| http://www.dialpad.com/ | https://dialpad.com/static/js/compressed/guest-backbone.js?v=2.395687649022808158 |
| [Constructor] | |
| interface SpeechRecognition : EventTarget { | |
| // recognition parameters | |
| attribute SpeechGrammarList grammars; | |
| attribute DOMString lang; | |
| attribute boolean continuous; | |
| attribute boolean interimResults; | |
| attribute unsigned long maxAlternatives; | |
| attribute DOMString serviceURI; |
| <!doctype html> | |
| <div style="background:white"> | |
| <button>request</button> | |
| <button>exit</button> | |
| <button>request+exit</button> | |
| <button>exit+request</button> | |
| <p>Log:</p> | |
| <pre></pre> | |
| </div> | |
| <script> |
| <!DOCTYPE html> | |
| <div> | |
| <button>enter once</button> | |
| <div> | |
| <button>enter twice</button> | |
| <div> | |
| <button>remove</button> | |
| </div> | |
| </div> | |
| </div> |
| #!/bin/bash -e | |
| for month in {2015,2016,2017}-{01,02,03,04,05,06,07,08,09,10,11,12}; do | |
| # GNU date | |
| nextmonth=`date +%Y-%m -d "$month-01 +1 month"` | |
| # BSD date | |
| #nextmonth=`date -j -f %Y-%m-%d -v+1m "$month-01" +%Y-%m` | |
| commits=`git rev-list origin/master --no-merges --since $month-01T00:00:00Z --until $nextmonth-01T00:00:00Z --count` | |
| chromium_exports=`git rev-list origin/master --no-merges --since $month-01T00:00:00Z --until $nextmonth-01T00:00:00Z --count --grep "^Change-Id:" --grep "^Cr-Commit-Position:"` | |
| gecko_exports=`git rev-list origin/master --no-merges --since $month-01T00:00:00Z --until $nextmonth-01T00:00:00Z --count --grep "^Upstreamed from https://bugzilla\\.mozilla\\.org/"` |
| 27e688a4b1ced89461e4ce8a6bd7fb89ec78687d | |
| third_party/WebKit/LayoutTests/external/wpt/XMLHttpRequest/access-control-preflight-sync-method-denied.htm | |
| fda432b111b7d9b05956e8f57d9fa97b5176c052 | |
| third_party/WebKit/LayoutTests/external/wpt/XMLHttpRequest/access-control-response-with-body.htm | |
| third_party/WebKit/LayoutTests/external/wpt/XMLHttpRequest/resources/access-control-allow-with-body.py | |
| 121450d37cd747d6dae44671ffc0409473443ee2 | |
| third_party/WebKit/LayoutTests/external/wpt/XMLHttpRequest/access-control-preflight-request-headers-origin.htm | |
| third_party/WebKit/LayoutTests/external/wpt/XMLHttpRequest/resources/access-control-preflight-request-headers-origin.py |
| #!/bin/bash -e | |
| SINCE="2017-04-10T00:00Z" | |
| # --since uses the committer date and we use UTC cutoffs, so other date handling | |
| # must also use commiter dates in UTC. | |
| export TZ=UTC | |
| ( | |
| find * -maxdepth 0 -type d | grep -v '^css$' |