Bug 1776680 [wpt PR 34603] - [@container] Test invalidation of font-relative units...
[gecko.git] / dom / events / ConstructibleEventTarget.h
blobfbaafac821f98330a16f0fe0aabaab7198abd633
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef mozilla_dom_ConstructibleEventTarget_h_
8 #define mozilla_dom_ConstructibleEventTarget_h_
10 #include "mozilla/DOMEventTargetHelper.h"
11 #include "js/RootingAPI.h"
13 namespace mozilla::dom {
15 class ConstructibleEventTarget : public DOMEventTargetHelper {
16 public:
17 // Not worrying about isupports and cycle collection here. This does mean
18 // ConstructibleEventTarget will show up in CC and refcount logs as a
19 // DOMEventTargetHelper, but that's probably OK.
21 explicit ConstructibleEventTarget(nsIGlobalObject* aGlobalObject)
22 : DOMEventTargetHelper(aGlobalObject) {}
24 virtual JSObject* WrapObject(JSContext* cx,
25 JS::Handle<JSObject*> aGivenProto) override;
28 } // namespace mozilla::dom
30 #endif // mozilla_dom_ConstructibleEventTarget_h_