Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(227)

Side by Side Diff: third_party/WebKit/Source/core/dom/ElementTest.cpp

Issue 2080623002: Revert "Remove OwnPtr from Blink." (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "core/dom/Element.h" 5 #include "core/dom/Element.h"
6 6
7 #include "core/dom/Document.h" 7 #include "core/dom/Document.h"
8 #include "core/frame/FrameView.h" 8 #include "core/frame/FrameView.h"
9 #include "core/html/HTMLHtmlElement.h" 9 #include "core/html/HTMLHtmlElement.h"
10 #include "core/testing/DummyPageHolder.h" 10 #include "core/testing/DummyPageHolder.h"
11 #include "testing/gtest/include/gtest/gtest.h" 11 #include "testing/gtest/include/gtest/gtest.h"
12 #include <memory>
13 12
14 namespace blink { 13 namespace blink {
15 14
16 TEST(ElementTest, SupportsFocus) 15 TEST(ElementTest, SupportsFocus)
17 { 16 {
18 std::unique_ptr<DummyPageHolder> pageHolder = DummyPageHolder::create(); 17 OwnPtr<DummyPageHolder> pageHolder = DummyPageHolder::create();
19 Document& document = pageHolder->document(); 18 Document& document = pageHolder->document();
20 DCHECK(isHTMLHtmlElement(document.documentElement())); 19 DCHECK(isHTMLHtmlElement(document.documentElement()));
21 document.setDesignMode("on"); 20 document.setDesignMode("on");
22 document.view()->updateAllLifecyclePhases(); 21 document.view()->updateAllLifecyclePhases();
23 EXPECT_TRUE(document.documentElement()->supportsFocus()) 22 EXPECT_TRUE(document.documentElement()->supportsFocus())
24 << "<html> with designMode=on should be focusable."; 23 << "<html> with designMode=on should be focusable.";
25 } 24 }
26 25
27 } // namespace blink 26 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/ElementRareData.h ('k') | third_party/WebKit/Source/core/dom/ExecutionContext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698