Bug 1340027 - Part 4: Add DOM parsing CEReactions annotation. r=smaug

This commit is contained in:
johndai1984 2017-06-29 10:27:00 -04:00
Родитель 8360924d92
Коммит 4512523d9b
2 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -223,11 +223,11 @@ partial interface Element {
// http://domparsing.spec.whatwg.org/#extensions-to-the-element-interface
partial interface Element {
[Pure,SetterThrows,TreatNullAs=EmptyString]
[CEReactions, Pure,SetterThrows,TreatNullAs=EmptyString]
attribute DOMString innerHTML;
[Pure,SetterThrows,TreatNullAs=EmptyString]
[CEReactions, Pure,SetterThrows,TreatNullAs=EmptyString]
attribute DOMString outerHTML;
[Throws]
[CEReactions, Throws]
void insertAdjacentHTML(DOMString position, DOMString text);
};

Просмотреть файл

@ -78,7 +78,7 @@ interface Range {
// http://domparsing.spec.whatwg.org/#dom-range-createcontextualfragment
partial interface Range {
[Throws]
[CEReactions, Throws]
DocumentFragment createContextualFragment(DOMString fragment);
};