Skip to content

Commit 16ca866

Browse files
authored
Merge pull request inikulin#146 from inikulin/latest-spec-changes
Apply latest spec changes
2 parents d717bf5 + 3f297c8 commit 16ca866

29 files changed

+1194
-426
lines changed

lib/common/foreign_content.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,9 @@ function isHtmlIntegrationPoint(tn, ns, attrs) {
252252
exports.isIntegrationPoint = function (tn, ns, attrs, foreignNS) {
253253
if ((!foreignNS || foreignNS === NS.HTML) && isHtmlIntegrationPoint(tn, ns, attrs))
254254
return true;
255+
255256
if ((!foreignNS || foreignNS === NS.MATHML) && isMathMLTextIntegrationPoint(tn, ns))
256257
return true;
258+
257259
return false;
258260
};

lib/common/html.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ var $ = exports.TAG_NAMES = {
8484
IMAGE: 'image',
8585
INPUT: 'input',
8686
IFRAME: 'iframe',
87-
ISINDEX: 'isindex',
8887

8988
KEYGEN: 'keygen',
9089

@@ -215,14 +214,12 @@ SPECIAL_ELEMENTS[NS.HTML][$.HTML] = true;
215214
SPECIAL_ELEMENTS[NS.HTML][$.IFRAME] = true;
216215
SPECIAL_ELEMENTS[NS.HTML][$.IMG] = true;
217216
SPECIAL_ELEMENTS[NS.HTML][$.INPUT] = true;
218-
SPECIAL_ELEMENTS[NS.HTML][$.ISINDEX] = true;
219217
SPECIAL_ELEMENTS[NS.HTML][$.LI] = true;
220218
SPECIAL_ELEMENTS[NS.HTML][$.LINK] = true;
221219
SPECIAL_ELEMENTS[NS.HTML][$.LISTING] = true;
222220
SPECIAL_ELEMENTS[NS.HTML][$.MAIN] = true;
223221
SPECIAL_ELEMENTS[NS.HTML][$.MARQUEE] = true;
224222
SPECIAL_ELEMENTS[NS.HTML][$.MENU] = true;
225-
SPECIAL_ELEMENTS[NS.HTML][$.MENUITEM] = true;
226223
SPECIAL_ELEMENTS[NS.HTML][$.META] = true;
227224
SPECIAL_ELEMENTS[NS.HTML][$.NAV] = true;
228225
SPECIAL_ELEMENTS[NS.HTML][$.NOEMBED] = true;

0 commit comments

Comments
 (0)