blob: 17c1226c0d7582c3a8c7555c7a5044d0ce7ab11d [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "third_party/blink/renderer/core/css/media_query_list.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/core/css/media_list.h"
#include "third_party/blink/renderer/core/css/media_query_list_listener.h"
#include "third_party/blink/renderer/core/css/media_query_matcher.h"
#include "third_party/blink/renderer/core/dom/document.h"
namespace blink {
namespace {
class TestListener : public MediaQueryListListener {
public:
void NotifyMediaQueryChanged() override {}
};
} // anonymous namespace
TEST(MediaQueryListTest, CrashInStop) {
Document* document = Document::CreateForTest();
MediaQueryList* list = MediaQueryList::Create(
document, MediaQueryMatcher::Create(*document), MediaQuerySet::Create());
list->AddListener(new TestListener());
list->ContextDestroyed(document);
// This test passes if it's not crashed.
}
} // namespace blink