aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls
diff options
context:
space:
mode:
authorbors-servo <metajack+bors@gmail.com>2015-09-08 02:29:00 -0600
committerbors-servo <metajack+bors@gmail.com>2015-09-08 02:29:00 -0600
commit5a0be12e43f92fc64b1d8f5d35f9dadaa4b53521 (patch)
tree8ff86e125befb904f63980c245b21129f126c6fa /components/script/dom/webidls
parent282f9ade931342e9cd1ae72fde9dd9f88cb5b34a (diff)
parentb3820047da0810b528800c385063a79c013cd0d6 (diff)
downloadservo-5a0be12e43f92fc64b1d8f5d35f9dadaa4b53521.tar.gz
servo-5a0be12e43f92fc64b1d8f5d35f9dadaa4b53521.zip
Auto merge of #7531 - nox:template, r=Ms2ger
Implement <template> All tests using iframes can't currently pass, same for innerHTML-related tests with <template> elements. The latter contradicts the spec, see the links below. Apart from this, they work, AFAICT. https://github.com/servo/html5ever/issues/164 https://www.w3.org/Bugs/Public/show_bug.cgi?id=27314 <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/7531) <!-- Reviewable:end -->
Diffstat (limited to 'components/script/dom/webidls')
-rw-r--r--components/script/dom/webidls/HTMLTemplateElement.webidl2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/webidls/HTMLTemplateElement.webidl b/components/script/dom/webidls/HTMLTemplateElement.webidl
index 66a1dd6ef62..fc497ea9f15 100644
--- a/components/script/dom/webidls/HTMLTemplateElement.webidl
+++ b/components/script/dom/webidls/HTMLTemplateElement.webidl
@@ -5,5 +5,5 @@
// https://www.whatwg.org/html/#htmltemplateelement
interface HTMLTemplateElement : HTMLElement {
- //readonly attribute DocumentFragment content;
+ readonly attribute DocumentFragment content;
};