Skip to content

Commit

Permalink
Merge pull request #52 from dglazkov/slot-performance
Browse files Browse the repository at this point in the history
Stubbed out Slots proposal.
  • Loading branch information
rniwa committed May 19, 2015
2 parents cd46f38 + 27e06d2 commit 2ad9392
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions proposals/Slots-Proposal.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Slots Proposal

```slot``` element represents an insertion point (slot?) in the shadow tree. Has same rendering behavior is as the ```content``` element.

Attributes:
* ```name``` -- the name of the slot.

```WebIDL
interface HTMLSlotElement : HTMLElement {
attribute DOMString name;
NodeList getDistributedNodes();
}
```

* ```name``` -- reflects the ```name``` attribute.
* ```getDistributedNodes``` --- returns a static list of nodes, currently distributed into this slot.

```WebIDL
partial interface Element {
attribute DOMString slot;
}
```

* ```slot``` -- reflects the ```slot``` attribute.

0 comments on commit 2ad9392

Please sign in to comment.