New issue
Advanced search Search tips
Note: Color blocks (like or ) mean that a user may not be available. Tooltip shows the reason.

Issue 835571 link

Starred by 4 users

Issue metadata

Status: Available
Owner: ----
Cc:
Components:
EstimatedDays: ----
NextAction: ----
OS: ----
Pri: 3
Type: Feature

Blocked on:
issue 781257



Sign in to add a comment

Implement HTMLOrSVGElement

Project Member Reported by pdr@chromium.org, Apr 21 2018

Issue description

A new mixin has been added: HTMLOrSVGElement
https://html.spec.whatwg.org/multipage/dom.html#htmlorsvgelement

interface mixin HTMLOrSVGElement {
  [SameObject] readonly attribute DOMStringMap dataset;
  attribute DOMString nonce;

  [CEReactions] attribute long tabIndex;
  void focus(optional FocusOptions options);
  void blur();
};
HTMLElement includes HTMLOrSVGElement;
SVGElement includes HTMLOrSVGElement;


We currently implement focus/blur/tabindex separately on HTMLElement and SVGElement. We currently implement nonce using NoncedElement.
 
Blockedon: 781257
Cc: hs1217....@samsung.com
but "mixin" keyword is not supported in blink yet.

Sign in to add a comment