Index: core/dom/DOMError.idl |
diff --git a/core/dom/DOMError.idl b/core/dom/DOMError.idl |
index aba4e7a6c512bcfc3c198da644485a69b25ffb7d..d0c954475628ed41222e6afb4123ac5d20409a2f 100644 |
--- a/core/dom/DOMError.idl |
+++ b/core/dom/DOMError.idl |
@@ -25,11 +25,15 @@ |
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
*/ |
+ |
+// https://dom.spec.whatwg.org/#domerror |
+ |
+// FIXME: DOMError has been removed from the spec. crbug.com/460725 |
[ |
Constructor(DOMString name, optional DOMString message = null), |
- WillBeGarbageCollected |
+ GarbageCollected, |
+ Measure, |
] interface DOMError { |
- readonly attribute DOMString name; |
- readonly attribute DOMString message; |
- }; |
- |
+ [Measure] readonly attribute DOMString name; |
+ [Measure] readonly attribute DOMString message; |
+}; |