Coverage Report

Created: 2018-09-25 14:53

/src/mozilla-central/dom/events/BeforeUnloadEvent.cpp
Line
Count
Source (jump to first uncovered line)
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/. */
6
7
#include "mozilla/dom/BeforeUnloadEvent.h"
8
9
namespace mozilla {
10
namespace dom {
11
12
void
13
BeforeUnloadEvent::SetReturnValue(const nsAString& aReturnValue)
14
0
{
15
0
  mText = aReturnValue;
16
0
}
17
18
void
19
BeforeUnloadEvent::GetReturnValue(nsAString& aReturnValue)
20
0
{
21
0
  aReturnValue = mText;
22
0
}
23
24
} // namespace dom
25
} // namespace mozilla
26
27
using namespace mozilla;
28
using namespace mozilla::dom;
29
30
already_AddRefed<BeforeUnloadEvent>
31
NS_NewDOMBeforeUnloadEvent(EventTarget* aOwner,
32
                           nsPresContext* aPresContext,
33
                           WidgetEvent* aEvent)
34
0
{
35
0
  RefPtr<BeforeUnloadEvent> it =
36
0
    new BeforeUnloadEvent(aOwner, aPresContext, aEvent);
37
0
  return it.forget();
38
0
}