@@ -56,7 +56,7 @@ The **important** parts are:
56
56
57
57
# Long Version
58
58
59
- IE has an issues with element tag names which are not standard HTML tag names. These fall into two
59
+ IE has issues with element tag names which are not standard HTML tag names. These fall into two
60
60
categories, and each category has its own fix.
61
61
62
62
* If the tag name starts with `my:` prefix than it is considered an XML namespace and must
@@ -65,7 +65,7 @@ categories, and each category has its own fix.
65
65
* If the tag has no `:` but it is not a standard HTML tag, then it must be pre-created using
66
66
`document.createElement('my-tag')`
67
67
68
- * If you have are planning on styling the custom tag with CSS selectors, then it must be
68
+ * If you are planning on styling the custom tag with CSS selectors, then it must be
69
69
pre-created using `document.createElement('my-tag')` regardless of XML namespace.
70
70
71
71
@@ -88,7 +88,7 @@ result):
88
88
</html>
89
89
</pre>
90
90
91
- It should pares into the following DOM:
91
+ It should parse into the following DOM:
92
92
93
93
<pre>
94
94
#document
@@ -122,12 +122,12 @@ In IE, the behavior is that the `BODY` element has three children:
122
122
123
123
3. A corrupt self closing `/mytag`. This is corrupt since element names are not allowed to have
124
124
the `/` character. Furthermore this closing element should not be part of the DOM since it is
125
- only used to delimitate the structure of the DOM.
125
+ only used to delineate the structure of the DOM.
126
126
127
127
128
128
## CSS Styling of Custom Tag Names
129
129
130
- The to make CSS selector work with custom elements the custom element name must be shived with the
130
+ To make CSS selectors work with custom elements, the custom element name must be pre-created with
131
131
`document.createElement('my-tag')` regardless of XML namespace.
132
132
133
133
<pre>
0 commit comments