├── .hgtags ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── assets ├── docs │ └── spec-assist.html ├── images │ ├── angular-poster-frame.png │ ├── composed-tree.svg │ ├── distribution.svg │ ├── ember-poster-frame.png │ ├── event-path-component-trees.svg │ ├── event-path-flat-tree.svg │ ├── example-basic-carousel.png │ ├── example-basic-list-box.png │ ├── example-basic-sequence.png │ ├── example-calendar.png │ ├── example-composed-tree.svg │ ├── example-flat-tree.svg │ ├── example-slotting.svg │ ├── flat-tree-desc.html │ ├── flat-tree.svg │ ├── import-style-document-order.png │ ├── react-poster-frame.png │ └── shadow-dom.graffle ├── scripts │ ├── autolink.js │ ├── bug-assist.js │ ├── prettify.js │ ├── spec-assist.js │ └── spec-assist_unittests.js └── styles │ ├── main.css │ ├── prettify.css │ └── spec.css ├── explainer ├── bug-assist.js └── index.html ├── index.html ├── proposals ├── Constructor-Dmitry.md ├── Cross-Origin-Custom-Elements-Concept-and-Proposal.md ├── Custom-Pseudo-Elements.md ├── DOM-Parts-Declarative-Template.md ├── DOM-Parts-Imperative.md ├── DOM-Parts.md ├── Declarative-Custom-Elements-Strawman.md ├── Declarative-Shadow-DOM.md ├── Default-Stylesheets-Concept-and-Proposal.md ├── Distribution-Timing-Experiment.md ├── HTML-Imports-and-ES-Modules.md ├── HTML-Modules-Demo │ ├── HTML5-Element.html │ └── Main.html ├── Imperative-API-for-Node-Distribution-in-Shadow-DOM.md ├── Imperative-Shadow-DOM-Distribution-API.md ├── Isolated-Imports-Proposal.md ├── Limiting-the-superpowers-of-the-Shadow-DOM-piercing-cominator.md ├── Multiple-Shadow-Roots-as-a-Shadow-Root-hosts-another-Shadow-Root.md ├── Optional-Upgrades-Optional-Constructors.md ├── Parser-Created-Constructors.md ├── Partial-Redistributions-Analysis.md ├── Proposal-for-changes-to-manage-Shadow-DOM-content-distribution.md ├── Scoped-Custom-Element-Registries.md ├── Shadow-DOM-Cascade-Order-in-v1.md ├── Shadow-DOM-Cascade-Order.md ├── ShadowRoot-delegatesFocus-Proposal.md ├── Slots-Proposal.md ├── Template-Instantiation.md ├── Type-Extensions.md ├── Why-Upgrades.md ├── css-modules-v1-explainer.md ├── custom-element-default-focus.md ├── custom-states-and-state-pseudo-class.md ├── html-module-spec-changes.md ├── html-modules-explainer.md ├── html-modules-proposal.md ├── reference-target-explainer.md └── shadow-dom-v1-in-blink.md ├── publish ├── custom │ ├── LCWD-custom-elements-20131024 │ │ ├── custom-elements-whole-world.svg │ │ ├── index.html │ │ ├── prettify.css │ │ └── spec.css │ ├── WD-custom-elements-20130514 │ │ ├── index.html │ │ ├── prettify.css │ │ └── spec.css │ └── WD-custom-elements-20141218 │ │ ├── custom-elements-whole-world.svg │ │ ├── index.html │ │ ├── prettify.css │ │ └── spec.css ├── explainer │ ├── WD-components-intro-20130606 │ │ ├── event-handler-registration.png │ │ ├── event-routing-retargeting.png │ │ ├── index.html │ │ ├── prettify.css │ │ ├── shadow-rendering.svg │ │ ├── shadow-trees.svg │ │ └── spec.css │ ├── event-handler-registration.png │ ├── event-routing-retargeting.png │ ├── index.html │ ├── prettify.css │ ├── shadow-dom-subtrees.svg │ ├── shadow-rendering.svg │ ├── shadow-stack.svg │ └── spec.css ├── imports │ ├── WD-html-imports-20130514 │ │ ├── index.html │ │ ├── prettify.css │ │ └── spec.css │ ├── WD-html-imports-20140306 │ │ ├── import-link-list.png │ │ ├── index.html │ │ ├── prettify.css │ │ └── spec.css │ └── WD-html-imports-20160225 │ │ ├── import-link-list.png │ │ ├── index.html │ │ └── respec-complement.css ├── shadow │ ├── WD-shadow-dom-20120522 │ │ ├── functional-encapsulation-example.svg │ │ ├── index.html │ │ ├── insertion-points.svg │ │ ├── prettify.css │ │ ├── shadow-dom-subtrees.svg │ │ ├── shadow-rendering.svg │ │ └── spec.css │ ├── WD-shadow-dom-20121016 │ │ ├── functional-encapsulation-example.svg │ │ ├── index.html │ │ ├── insertion-points.svg │ │ ├── prettify.css │ │ ├── shadow-dom-subtrees.svg │ │ ├── shadow-rendering.svg │ │ └── spec.css │ ├── WD-shadow-dom-20130514 │ │ ├── common.svg │ │ ├── functional-encapsulation-example.svg │ │ ├── index.html │ │ ├── insertion-points.svg │ │ ├── prettify.css │ │ ├── shadow-rendering.svg │ │ ├── shadow-root-and-shadow-host.svg │ │ ├── shadow-stack.svg │ │ ├── shadow-trees.svg │ │ └── spec.css │ ├── WD-shadow-dom-20140612 │ │ ├── composed-tree.svg │ │ ├── distributions.svg │ │ ├── event-path-and-composed-tree.svg │ │ ├── event-path-node-trees.svg │ │ ├── event-path-tree-of-trees.svg │ │ ├── index.html │ │ ├── re-distributions.svg │ │ ├── respec-complement.css │ │ ├── tree-of-trees.svg │ │ └── working-draft.css │ ├── WD-shadow-dom-20140619 │ │ ├── composed-tree.svg │ │ ├── distributions.svg │ │ ├── event-path-and-composed-tree.svg │ │ ├── event-path-node-trees.svg │ │ ├── event-path-tree-of-trees.svg │ │ ├── index.html │ │ ├── re-distributions.svg │ │ ├── respec-complement.css │ │ ├── tree-of-trees.svg │ │ ├── working-draft.css │ │ └── working-draft.js │ ├── WD-shadow-dom-20151006 │ │ ├── composed-tree.svg │ │ ├── composition-composed-tree.svg │ │ ├── composition-slotting.svg │ │ ├── composition-tree-of-trees.svg │ │ ├── distributions.svg │ │ ├── event-path-composed-tree.svg │ │ ├── event-path-trees.svg │ │ ├── index.html │ │ ├── respec-complement.css │ │ ├── tree-of-trees.svg │ │ ├── working-draft.css │ │ └── working-draft.js │ └── WD-shadow-dom-20151008 │ │ ├── composed-tree.svg │ │ ├── composition-composed-tree.svg │ │ ├── composition-slotting.svg │ │ ├── composition-tree-of-trees.svg │ │ ├── distributions.svg │ │ ├── event-path-composed-tree.svg │ │ ├── event-path-trees.svg │ │ ├── index.html │ │ ├── respec-complement.css │ │ ├── tree-of-trees.svg │ │ ├── working-draft.css │ │ └── working-draft.js └── template │ ├── WD-html-templates-20130214 │ ├── index.html │ ├── prettify.css │ └── spec.css │ └── WD-html-templates-20130328 │ ├── index.html │ ├── prettify.css │ └── spec.css ├── samples ├── contacts-widget.html ├── entry-helper.html ├── index.html ├── replay-extension.html ├── table-chart.html ├── timezone-map-custom-element.html ├── timezone-map-decorator.html └── widget-theming.html ├── spec ├── custom │ └── index.html ├── imports │ ├── W3CTRMANIFEST │ ├── import-link-list.png │ └── index.html └── shadow │ └── index.html └── w3c.json /.hgtags: -------------------------------------------------------------------------------- 1 | 8511d6775adc4189f7f0cf31db104b697e0726ce draft-1 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/README.md -------------------------------------------------------------------------------- /assets/docs/spec-assist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/assets/docs/spec-assist.html -------------------------------------------------------------------------------- /assets/images/angular-poster-frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/assets/images/angular-poster-frame.png -------------------------------------------------------------------------------- /assets/images/composed-tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/assets/images/composed-tree.svg -------------------------------------------------------------------------------- /assets/images/distribution.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/assets/images/distribution.svg -------------------------------------------------------------------------------- /assets/images/ember-poster-frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/assets/images/ember-poster-frame.png -------------------------------------------------------------------------------- /assets/images/event-path-component-trees.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/assets/images/event-path-component-trees.svg -------------------------------------------------------------------------------- /assets/images/event-path-flat-tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/assets/images/event-path-flat-tree.svg -------------------------------------------------------------------------------- /assets/images/example-basic-carousel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/assets/images/example-basic-carousel.png -------------------------------------------------------------------------------- /assets/images/example-basic-list-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/assets/images/example-basic-list-box.png -------------------------------------------------------------------------------- /assets/images/example-basic-sequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/assets/images/example-basic-sequence.png -------------------------------------------------------------------------------- /assets/images/example-calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/assets/images/example-calendar.png -------------------------------------------------------------------------------- /assets/images/example-composed-tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/assets/images/example-composed-tree.svg -------------------------------------------------------------------------------- /assets/images/example-flat-tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/assets/images/example-flat-tree.svg -------------------------------------------------------------------------------- /assets/images/example-slotting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/assets/images/example-slotting.svg -------------------------------------------------------------------------------- /assets/images/flat-tree-desc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/assets/images/flat-tree-desc.html -------------------------------------------------------------------------------- /assets/images/flat-tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/assets/images/flat-tree.svg -------------------------------------------------------------------------------- /assets/images/import-style-document-order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/assets/images/import-style-document-order.png -------------------------------------------------------------------------------- /assets/images/react-poster-frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/assets/images/react-poster-frame.png -------------------------------------------------------------------------------- /assets/images/shadow-dom.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/assets/images/shadow-dom.graffle -------------------------------------------------------------------------------- /assets/scripts/autolink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/assets/scripts/autolink.js -------------------------------------------------------------------------------- /assets/scripts/bug-assist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/assets/scripts/bug-assist.js -------------------------------------------------------------------------------- /assets/scripts/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/assets/scripts/prettify.js -------------------------------------------------------------------------------- /assets/scripts/spec-assist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/assets/scripts/spec-assist.js -------------------------------------------------------------------------------- /assets/scripts/spec-assist_unittests.js: -------------------------------------------------------------------------------- 1 | /* Unit tests for spec-assist wil go here */ 2 | -------------------------------------------------------------------------------- /assets/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/assets/styles/main.css -------------------------------------------------------------------------------- /assets/styles/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/assets/styles/prettify.css -------------------------------------------------------------------------------- /assets/styles/spec.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/assets/styles/spec.css -------------------------------------------------------------------------------- /explainer/bug-assist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/explainer/bug-assist.js -------------------------------------------------------------------------------- /explainer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/explainer/index.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/index.html -------------------------------------------------------------------------------- /proposals/Constructor-Dmitry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/proposals/Constructor-Dmitry.md -------------------------------------------------------------------------------- /proposals/Cross-Origin-Custom-Elements-Concept-and-Proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/proposals/Cross-Origin-Custom-Elements-Concept-and-Proposal.md -------------------------------------------------------------------------------- /proposals/Custom-Pseudo-Elements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/proposals/Custom-Pseudo-Elements.md -------------------------------------------------------------------------------- /proposals/DOM-Parts-Declarative-Template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/proposals/DOM-Parts-Declarative-Template.md -------------------------------------------------------------------------------- /proposals/DOM-Parts-Imperative.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/proposals/DOM-Parts-Imperative.md -------------------------------------------------------------------------------- /proposals/DOM-Parts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/proposals/DOM-Parts.md -------------------------------------------------------------------------------- /proposals/Declarative-Custom-Elements-Strawman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/proposals/Declarative-Custom-Elements-Strawman.md -------------------------------------------------------------------------------- /proposals/Declarative-Shadow-DOM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/proposals/Declarative-Shadow-DOM.md -------------------------------------------------------------------------------- /proposals/Default-Stylesheets-Concept-and-Proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/proposals/Default-Stylesheets-Concept-and-Proposal.md -------------------------------------------------------------------------------- /proposals/Distribution-Timing-Experiment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/proposals/Distribution-Timing-Experiment.md -------------------------------------------------------------------------------- /proposals/HTML-Imports-and-ES-Modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/proposals/HTML-Imports-and-ES-Modules.md -------------------------------------------------------------------------------- /proposals/HTML-Modules-Demo/HTML5-Element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/proposals/HTML-Modules-Demo/HTML5-Element.html -------------------------------------------------------------------------------- /proposals/HTML-Modules-Demo/Main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/proposals/HTML-Modules-Demo/Main.html -------------------------------------------------------------------------------- /proposals/Imperative-API-for-Node-Distribution-in-Shadow-DOM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/proposals/Imperative-API-for-Node-Distribution-in-Shadow-DOM.md -------------------------------------------------------------------------------- /proposals/Imperative-Shadow-DOM-Distribution-API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/proposals/Imperative-Shadow-DOM-Distribution-API.md -------------------------------------------------------------------------------- /proposals/Isolated-Imports-Proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/proposals/Isolated-Imports-Proposal.md -------------------------------------------------------------------------------- /proposals/Limiting-the-superpowers-of-the-Shadow-DOM-piercing-cominator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/proposals/Limiting-the-superpowers-of-the-Shadow-DOM-piercing-cominator.md -------------------------------------------------------------------------------- /proposals/Multiple-Shadow-Roots-as-a-Shadow-Root-hosts-another-Shadow-Root.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/proposals/Multiple-Shadow-Roots-as-a-Shadow-Root-hosts-another-Shadow-Root.md -------------------------------------------------------------------------------- /proposals/Optional-Upgrades-Optional-Constructors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/proposals/Optional-Upgrades-Optional-Constructors.md -------------------------------------------------------------------------------- /proposals/Parser-Created-Constructors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/proposals/Parser-Created-Constructors.md -------------------------------------------------------------------------------- /proposals/Partial-Redistributions-Analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/proposals/Partial-Redistributions-Analysis.md -------------------------------------------------------------------------------- /proposals/Proposal-for-changes-to-manage-Shadow-DOM-content-distribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/proposals/Proposal-for-changes-to-manage-Shadow-DOM-content-distribution.md -------------------------------------------------------------------------------- /proposals/Scoped-Custom-Element-Registries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/proposals/Scoped-Custom-Element-Registries.md -------------------------------------------------------------------------------- /proposals/Shadow-DOM-Cascade-Order-in-v1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/proposals/Shadow-DOM-Cascade-Order-in-v1.md -------------------------------------------------------------------------------- /proposals/Shadow-DOM-Cascade-Order.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/proposals/Shadow-DOM-Cascade-Order.md -------------------------------------------------------------------------------- /proposals/ShadowRoot-delegatesFocus-Proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/proposals/ShadowRoot-delegatesFocus-Proposal.md -------------------------------------------------------------------------------- /proposals/Slots-Proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/proposals/Slots-Proposal.md -------------------------------------------------------------------------------- /proposals/Template-Instantiation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/proposals/Template-Instantiation.md -------------------------------------------------------------------------------- /proposals/Type-Extensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/proposals/Type-Extensions.md -------------------------------------------------------------------------------- /proposals/Why-Upgrades.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/proposals/Why-Upgrades.md -------------------------------------------------------------------------------- /proposals/css-modules-v1-explainer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/proposals/css-modules-v1-explainer.md -------------------------------------------------------------------------------- /proposals/custom-element-default-focus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/proposals/custom-element-default-focus.md -------------------------------------------------------------------------------- /proposals/custom-states-and-state-pseudo-class.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/proposals/custom-states-and-state-pseudo-class.md -------------------------------------------------------------------------------- /proposals/html-module-spec-changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/proposals/html-module-spec-changes.md -------------------------------------------------------------------------------- /proposals/html-modules-explainer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/proposals/html-modules-explainer.md -------------------------------------------------------------------------------- /proposals/html-modules-proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/proposals/html-modules-proposal.md -------------------------------------------------------------------------------- /proposals/reference-target-explainer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/proposals/reference-target-explainer.md -------------------------------------------------------------------------------- /proposals/shadow-dom-v1-in-blink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/proposals/shadow-dom-v1-in-blink.md -------------------------------------------------------------------------------- /publish/custom/LCWD-custom-elements-20131024/custom-elements-whole-world.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/custom/LCWD-custom-elements-20131024/custom-elements-whole-world.svg -------------------------------------------------------------------------------- /publish/custom/LCWD-custom-elements-20131024/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/custom/LCWD-custom-elements-20131024/index.html -------------------------------------------------------------------------------- /publish/custom/LCWD-custom-elements-20131024/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/custom/LCWD-custom-elements-20131024/prettify.css -------------------------------------------------------------------------------- /publish/custom/LCWD-custom-elements-20131024/spec.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/custom/LCWD-custom-elements-20131024/spec.css -------------------------------------------------------------------------------- /publish/custom/WD-custom-elements-20130514/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/custom/WD-custom-elements-20130514/index.html -------------------------------------------------------------------------------- /publish/custom/WD-custom-elements-20130514/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/custom/WD-custom-elements-20130514/prettify.css -------------------------------------------------------------------------------- /publish/custom/WD-custom-elements-20130514/spec.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/custom/WD-custom-elements-20130514/spec.css -------------------------------------------------------------------------------- /publish/custom/WD-custom-elements-20141218/custom-elements-whole-world.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/custom/WD-custom-elements-20141218/custom-elements-whole-world.svg -------------------------------------------------------------------------------- /publish/custom/WD-custom-elements-20141218/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/custom/WD-custom-elements-20141218/index.html -------------------------------------------------------------------------------- /publish/custom/WD-custom-elements-20141218/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/custom/WD-custom-elements-20141218/prettify.css -------------------------------------------------------------------------------- /publish/custom/WD-custom-elements-20141218/spec.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/custom/WD-custom-elements-20141218/spec.css -------------------------------------------------------------------------------- /publish/explainer/WD-components-intro-20130606/event-handler-registration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/explainer/WD-components-intro-20130606/event-handler-registration.png -------------------------------------------------------------------------------- /publish/explainer/WD-components-intro-20130606/event-routing-retargeting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/explainer/WD-components-intro-20130606/event-routing-retargeting.png -------------------------------------------------------------------------------- /publish/explainer/WD-components-intro-20130606/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/explainer/WD-components-intro-20130606/index.html -------------------------------------------------------------------------------- /publish/explainer/WD-components-intro-20130606/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/explainer/WD-components-intro-20130606/prettify.css -------------------------------------------------------------------------------- /publish/explainer/WD-components-intro-20130606/shadow-rendering.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/explainer/WD-components-intro-20130606/shadow-rendering.svg -------------------------------------------------------------------------------- /publish/explainer/WD-components-intro-20130606/shadow-trees.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/explainer/WD-components-intro-20130606/shadow-trees.svg -------------------------------------------------------------------------------- /publish/explainer/WD-components-intro-20130606/spec.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/explainer/WD-components-intro-20130606/spec.css -------------------------------------------------------------------------------- /publish/explainer/event-handler-registration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/explainer/event-handler-registration.png -------------------------------------------------------------------------------- /publish/explainer/event-routing-retargeting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/explainer/event-routing-retargeting.png -------------------------------------------------------------------------------- /publish/explainer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/explainer/index.html -------------------------------------------------------------------------------- /publish/explainer/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/explainer/prettify.css -------------------------------------------------------------------------------- /publish/explainer/shadow-dom-subtrees.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/explainer/shadow-dom-subtrees.svg -------------------------------------------------------------------------------- /publish/explainer/shadow-rendering.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/explainer/shadow-rendering.svg -------------------------------------------------------------------------------- /publish/explainer/shadow-stack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/explainer/shadow-stack.svg -------------------------------------------------------------------------------- /publish/explainer/spec.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/explainer/spec.css -------------------------------------------------------------------------------- /publish/imports/WD-html-imports-20130514/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/imports/WD-html-imports-20130514/index.html -------------------------------------------------------------------------------- /publish/imports/WD-html-imports-20130514/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/imports/WD-html-imports-20130514/prettify.css -------------------------------------------------------------------------------- /publish/imports/WD-html-imports-20130514/spec.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/imports/WD-html-imports-20130514/spec.css -------------------------------------------------------------------------------- /publish/imports/WD-html-imports-20140306/import-link-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/imports/WD-html-imports-20140306/import-link-list.png -------------------------------------------------------------------------------- /publish/imports/WD-html-imports-20140306/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/imports/WD-html-imports-20140306/index.html -------------------------------------------------------------------------------- /publish/imports/WD-html-imports-20140306/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/imports/WD-html-imports-20140306/prettify.css -------------------------------------------------------------------------------- /publish/imports/WD-html-imports-20140306/spec.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/imports/WD-html-imports-20140306/spec.css -------------------------------------------------------------------------------- /publish/imports/WD-html-imports-20160225/import-link-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/imports/WD-html-imports-20160225/import-link-list.png -------------------------------------------------------------------------------- /publish/imports/WD-html-imports-20160225/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/imports/WD-html-imports-20160225/index.html -------------------------------------------------------------------------------- /publish/imports/WD-html-imports-20160225/respec-complement.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/imports/WD-html-imports-20160225/respec-complement.css -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20120522/functional-encapsulation-example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20120522/functional-encapsulation-example.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20120522/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20120522/index.html -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20120522/insertion-points.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20120522/insertion-points.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20120522/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20120522/prettify.css -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20120522/shadow-dom-subtrees.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20120522/shadow-dom-subtrees.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20120522/shadow-rendering.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20120522/shadow-rendering.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20120522/spec.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20120522/spec.css -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20121016/functional-encapsulation-example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20121016/functional-encapsulation-example.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20121016/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20121016/index.html -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20121016/insertion-points.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20121016/insertion-points.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20121016/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20121016/prettify.css -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20121016/shadow-dom-subtrees.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20121016/shadow-dom-subtrees.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20121016/shadow-rendering.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20121016/shadow-rendering.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20121016/spec.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20121016/spec.css -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20130514/common.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20130514/common.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20130514/functional-encapsulation-example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20130514/functional-encapsulation-example.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20130514/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20130514/index.html -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20130514/insertion-points.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20130514/insertion-points.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20130514/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20130514/prettify.css -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20130514/shadow-rendering.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20130514/shadow-rendering.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20130514/shadow-root-and-shadow-host.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20130514/shadow-root-and-shadow-host.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20130514/shadow-stack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20130514/shadow-stack.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20130514/shadow-trees.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20130514/shadow-trees.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20130514/spec.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20130514/spec.css -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20140612/composed-tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20140612/composed-tree.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20140612/distributions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20140612/distributions.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20140612/event-path-and-composed-tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20140612/event-path-and-composed-tree.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20140612/event-path-node-trees.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20140612/event-path-node-trees.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20140612/event-path-tree-of-trees.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20140612/event-path-tree-of-trees.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20140612/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20140612/index.html -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20140612/re-distributions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20140612/re-distributions.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20140612/respec-complement.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20140612/respec-complement.css -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20140612/tree-of-trees.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20140612/tree-of-trees.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20140612/working-draft.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20140612/working-draft.css -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20140619/composed-tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20140619/composed-tree.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20140619/distributions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20140619/distributions.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20140619/event-path-and-composed-tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20140619/event-path-and-composed-tree.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20140619/event-path-node-trees.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20140619/event-path-node-trees.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20140619/event-path-tree-of-trees.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20140619/event-path-tree-of-trees.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20140619/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20140619/index.html -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20140619/re-distributions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20140619/re-distributions.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20140619/respec-complement.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20140619/respec-complement.css -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20140619/tree-of-trees.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20140619/tree-of-trees.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20140619/working-draft.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20140619/working-draft.css -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20140619/working-draft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20140619/working-draft.js -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20151006/composed-tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20151006/composed-tree.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20151006/composition-composed-tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20151006/composition-composed-tree.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20151006/composition-slotting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20151006/composition-slotting.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20151006/composition-tree-of-trees.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20151006/composition-tree-of-trees.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20151006/distributions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20151006/distributions.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20151006/event-path-composed-tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20151006/event-path-composed-tree.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20151006/event-path-trees.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20151006/event-path-trees.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20151006/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20151006/index.html -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20151006/respec-complement.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20151006/respec-complement.css -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20151006/tree-of-trees.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20151006/tree-of-trees.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20151006/working-draft.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20151006/working-draft.css -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20151006/working-draft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20151006/working-draft.js -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20151008/composed-tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20151008/composed-tree.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20151008/composition-composed-tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20151008/composition-composed-tree.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20151008/composition-slotting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20151008/composition-slotting.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20151008/composition-tree-of-trees.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20151008/composition-tree-of-trees.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20151008/distributions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20151008/distributions.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20151008/event-path-composed-tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20151008/event-path-composed-tree.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20151008/event-path-trees.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20151008/event-path-trees.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20151008/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20151008/index.html -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20151008/respec-complement.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20151008/respec-complement.css -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20151008/tree-of-trees.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20151008/tree-of-trees.svg -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20151008/working-draft.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20151008/working-draft.css -------------------------------------------------------------------------------- /publish/shadow/WD-shadow-dom-20151008/working-draft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/shadow/WD-shadow-dom-20151008/working-draft.js -------------------------------------------------------------------------------- /publish/template/WD-html-templates-20130214/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/template/WD-html-templates-20130214/index.html -------------------------------------------------------------------------------- /publish/template/WD-html-templates-20130214/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/template/WD-html-templates-20130214/prettify.css -------------------------------------------------------------------------------- /publish/template/WD-html-templates-20130214/spec.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/template/WD-html-templates-20130214/spec.css -------------------------------------------------------------------------------- /publish/template/WD-html-templates-20130328/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/template/WD-html-templates-20130328/index.html -------------------------------------------------------------------------------- /publish/template/WD-html-templates-20130328/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/template/WD-html-templates-20130328/prettify.css -------------------------------------------------------------------------------- /publish/template/WD-html-templates-20130328/spec.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/publish/template/WD-html-templates-20130328/spec.css -------------------------------------------------------------------------------- /samples/contacts-widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/samples/contacts-widget.html -------------------------------------------------------------------------------- /samples/entry-helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/samples/entry-helper.html -------------------------------------------------------------------------------- /samples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/samples/index.html -------------------------------------------------------------------------------- /samples/replay-extension.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/samples/replay-extension.html -------------------------------------------------------------------------------- /samples/table-chart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/samples/table-chart.html -------------------------------------------------------------------------------- /samples/timezone-map-custom-element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/samples/timezone-map-custom-element.html -------------------------------------------------------------------------------- /samples/timezone-map-decorator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/samples/timezone-map-decorator.html -------------------------------------------------------------------------------- /samples/widget-theming.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/samples/widget-theming.html -------------------------------------------------------------------------------- /spec/custom/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/spec/custom/index.html -------------------------------------------------------------------------------- /spec/imports/W3CTRMANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/spec/imports/W3CTRMANIFEST -------------------------------------------------------------------------------- /spec/imports/import-link-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/spec/imports/import-link-list.png -------------------------------------------------------------------------------- /spec/imports/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/spec/imports/index.html -------------------------------------------------------------------------------- /spec/shadow/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/spec/shadow/index.html -------------------------------------------------------------------------------- /w3c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/webcomponents/HEAD/w3c.json --------------------------------------------------------------------------------