All Projects → whatwg → Dom

whatwg / Dom

Licence: cc-by-4.0
DOM Standard

Projects that are alternatives of or similar to Dom

Fetch
Fetch Standard
Stars: ✭ 1,794 (+61.04%)
Mutual labels:  standard, whatwg
quirks
Quirks Mode Standard
Stars: ✭ 23 (-97.94%)
Mutual labels:  standard, whatwg
Encoding
Encoding Standard
Stars: ✭ 176 (-84.2%)
Mutual labels:  standard, whatwg
Abort Controller
An implementation of WHATWG AbortController interface.
Stars: ✭ 213 (-80.88%)
Mutual labels:  whatwg, dom
Wpt
Test suites for Web platform specs — including WHATWG, W3C, and others
Stars: ✭ 3,573 (+220.74%)
Mutual labels:  whatwg, dom
Notifications
Notifications API Standard
Stars: ✭ 105 (-90.57%)
Mutual labels:  standard, whatwg
webidl
Web IDL Standard
Stars: ✭ 296 (-73.43%)
Mutual labels:  standard, whatwg
Fullscreen
Fullscreen API Standard
Stars: ✭ 78 (-93%)
Mutual labels:  standard, whatwg
Xhr
XMLHttpRequest Standard
Stars: ✭ 262 (-76.48%)
Mutual labels:  standard, whatwg
storage
Storage Standard
Stars: ✭ 92 (-91.74%)
Mutual labels:  standard, whatwg
Htmlkit
An Objective-C framework for your everyday HTML needs.
Stars: ✭ 206 (-81.51%)
Mutual labels:  whatwg, dom
Html
HTML Standard
Stars: ✭ 5,217 (+368.31%)
Mutual labels:  standard, whatwg
mimesniff
MIME Sniffing Standard
Stars: ✭ 89 (-92.01%)
Mutual labels:  standard, whatwg
infra
Infra Standard
Stars: ✭ 85 (-92.37%)
Mutual labels:  standard, whatwg
Url
URL Standard
Stars: ✭ 343 (-69.21%)
Mutual labels:  standard, whatwg
Streams
Streams Standard
Stars: ✭ 1,074 (-3.59%)
Mutual labels:  standard, whatwg
Frisbee
🐕 Modern fetch-based alternative to axios/superagent/request. Great for React Native.
Stars: ✭ 1,038 (-6.82%)
Mutual labels:  whatwg
Browser Monkey
Reliable DOM testing
Stars: ✭ 53 (-95.24%)
Mutual labels:  dom
Owasp Masvs
The Mobile Application Security Verification Standard (MASVS) is a standard for mobile app security.
Stars: ✭ 1,030 (-7.54%)
Mutual labels:  standard
Teamstandard
基于gitbook构建团队项目开发规范文档,期待你的提议☆⌒(*^-゜)v THX!!
Stars: ✭ 45 (-95.96%)
Mutual labels:  standard

This repository hosts the DOM Standard.

Code of conduct

We are committed to providing a friendly, safe, and welcoming environment for all. Please read and respect the WHATWG Code of Conduct.

Contribution opportunities

Folks notice minor and larger issues with the DOM Standard all the time and we'd love your help fixing those. Pull requests for typographical and grammar errors are also most welcome.

Issues labeled "good first issue" are a good place to get a taste for editing the DOM Standard and providing a pull request.

We'd be happy to mentor you through this process. If you're interested and need help getting started, leave a comment on the issue or ask around on IRC.

Pull requests

In short, change dom.bs and submit your patch, with a good commit message. Consider reading through the WHATWG FAQ if you are new here.

Please add your name to the Acknowledgments section in your first pull request, even for trivial fixes. The names are sorted lexicographically.

Building "locally"

For quick local iteration, run make. To verify your changes locally, run make deploy. See more in the WHATWG Contributor Guidelines.

Formatting

Use a column width of 100 characters.

Do not use newlines inside "inline" elements, even if that means exceeding the column width requirement.

<p>The
<dfn method for=DOMTokenList lt=remove(tokens)|remove()><code>remove(<var>tokens</var>&hellip;)</code></dfn>
method, when invoked, must run these steps:

is okay and

<p>The <dfn method for=DOMTokenList
lt=remove(tokens)|remove()><code>remove(<var>tokens</var>&hellip;)</code></dfn> method, when
invoked, must run these steps:

is not.

Using newlines between "inline" element tag names and their content is also forbidden. (This actually alters the content, by adding spaces.) That is

<a>token</a>

is fine and

<a>token
</a>

is not.

An <li> element always has a <p> element inside it, unless it's a child of <ul class=brief>.

If a "block" element contains a single "block" element, do not put it on a newline.

Do not indent for anything except a new "block" element. For instance

 <li><p>For each <var>token</var> in <var>tokens</var>, in given order, that is not in
 <a>tokens</a>, append <var>token</var> to <a>tokens</a>.

is not indented, but

<ol>
 <li>
  <p>For each <var>token</var> in <var>tokens</var>, run these substeps:

  <ol>
   <li><p>If <var>token</var> is the empty string, <a>throw</a> a {{SyntaxError}} exception.

is.

End tags may be included (if done consistently) and attributes may be quoted (using double quotes), though the prevelant theme is to omit end tags and not quote attributes (unless they contain a space).

Merge policy

If you can commit to this repository, see the WHATWG Maintainer Guidelines.

Tests

Tests can be found in the dom/ directory of web-platform-tests/wpt.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].