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

Unified Diff: Source/core/page/ContextMenuControllerTest.cpp

Issue 766863002: Implement checked attribute for menuitem. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased Created 6 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/html/HTMLMenuItemElement.cpp ('k') | Source/core/page/CustomContextMenuProvider.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/page/ContextMenuControllerTest.cpp
diff --git a/Source/core/page/ContextMenuControllerTest.cpp b/Source/core/page/ContextMenuControllerTest.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..d941e0e19e7c037d50db088eff6916cce5ae7967
--- /dev/null
+++ b/Source/core/page/ContextMenuControllerTest.cpp
@@ -0,0 +1,93 @@
+// 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 "config.h"
+#include "core/page/ContextMenuController.h"
+
+#include "core/clipboard/DataTransfer.h"
+#include "core/events/MouseEvent.h"
+#include "core/frame/FrameView.h"
+#include "core/frame/Settings.h"
+#include "core/html/HTMLElement.h"
+#include "core/testing/DummyPageHolder.h"
+#include "platform/ContextMenu.h"
+#include "wtf/OwnPtr.h"
+#include <gtest/gtest.h>
+
+namespace blink {
+
+class ContextMenuControllerTest : public testing::Test {
+protected:
+ virtual void SetUp()
+ {
+ m_pageHolder = DummyPageHolder::create(IntSize(800, 600));
+ }
+
+ Document& document() const { return m_pageHolder->document(); }
+
+ void setBodyInnerHTML(const String& htmlContent)
+ {
+ document().body()->setInnerHTML(htmlContent, ASSERT_NO_EXCEPTION);
+ document().view()->updateLayoutAndStyleIfNeededRecursive();
+ }
+
+private:
+ OwnPtr<DummyPageHolder> m_pageHolder;
+};
+
+TEST_F(ContextMenuControllerTest, TestCustomMenu)
+{
+ document().settings()->setScriptEnabled(true);
+ // Load the the test page.
+ setBodyInnerHTML(
+ "<button id=\"button_id\" contextmenu=\"menu_id\" style=\"height: 100px; width: 100px;\">"
+ "<menu type=\"popup\" id=\"menu_id\">"
+ "<menuitem label=\"Item1\" onclick='document.title = \"Title 1\";'>"
+ "<menuitem label=\"Item2\" onclick='document.title = \"Title 2\";'>"
+ "<menuitem label=\"Item3\" onclick='document.title = \"Title 3\";'>"
+ "<menu label='Submenu'>"
+ "<menuitem label=\"Item4\" onclick='document.title = \"Title 4\";'>"
+ "<menuitem label=\"Item5\" onclick='document.title = \"Title 5\";'>"
+ "<menuitem label=\"Item6\" onclick='document.title = \"Title 6\";'>"
+ "</menu>"
+ "<menuitem id=\"item7\" type=\"checkbox\" checked label=\"Item7\""
+ "onclick='if (document.getElementById(\"item7\").hasAttribute(\"checked\"))"
+ "document.title = \"Title 7 checked\"; else document.title = \"Title 7 not checked\";'>"
+ "</menu>"
+ "</button>");
+
+ // Create right button click event and pass it to context menu controller.
+ RefPtrWillBeRawPtr<Event> event = MouseEvent::create(EventTypeNames::click, false, false,
+ document().domWindow(), 50, 50, 0, 0, 0, 0, 0, false, false, false, false, 1, 0, nullptr, nullptr);
+ document().getElementById("button_id")->focus();
+ event->setTarget(document().getElementById("button_id"));
+ document().page()->contextMenuController().handleContextMenuEvent(event.get());
+
+ // Item 1
+ // Item 2
+ // Item 3
+ // Submenu > Item 4
+ // Item 5
+ // Item 6
+ // *Item 7
+ const Vector<ContextMenuItem>& items = document().page()->contextMenuController().contextMenu()->items();
+ EXPECT_EQ(5u, items.size());
+ EXPECT_EQ(ActionType, items[0].type());
+ EXPECT_STREQ("Item1", items[0].title().utf8().data());
+ document().page()->contextMenuController().contextMenuItemSelected(&items[0]);
+ EXPECT_STREQ("Title 1", document().title().utf8().data());
+ EXPECT_EQ(SubmenuType, items[3].type());
+ EXPECT_STREQ("Submenu", items[3].title().utf8().data());
+ const Vector<ContextMenuItem>& subMenuItems = items[3].subMenuItems();
+ EXPECT_EQ(3u, subMenuItems.size());
+ EXPECT_STREQ("Item6", subMenuItems[2].title().utf8().data());
+ document().page()->contextMenuController().contextMenuItemSelected(&subMenuItems[2]);
+ EXPECT_STREQ("Title 6", document().title().utf8().data());
+ document().page()->contextMenuController().contextMenuItemSelected(&items[4]);
+ EXPECT_STREQ("Title 7 checked", document().title().utf8().data());
+ document().page()->contextMenuController().contextMenuItemSelected(&items[4]);
+ EXPECT_STREQ("Title 7 not checked", document().title().utf8().data());
+}
+
+}
« no previous file with comments | « Source/core/html/HTMLMenuItemElement.cpp ('k') | Source/core/page/CustomContextMenuProvider.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698