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

Side by Side Diff: Source/web/PopupMenuTest.cpp

Issue 977113003: Rename renderer() to layoutObject(). (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « Source/web/LinkHighlight.cpp ('k') | Source/web/SpellCheckerClientImpl.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 609 matching lines...) Expand 10 before | Expand all | Expand 10 after
620 #if OS(MACOSX) || OS(ANDROID) 620 #if OS(MACOSX) || OS(ANDROID)
621 TEST_F(SelectPopupMenuStyleTest, DISABLED_PopupListBoxRTLRowWidth) 621 TEST_F(SelectPopupMenuStyleTest, DISABLED_PopupListBoxRTLRowWidth)
622 #else 622 #else
623 TEST_F(SelectPopupMenuStyleTest, PopupListBoxRTLRowWidth) 623 TEST_F(SelectPopupMenuStyleTest, PopupListBoxRTLRowWidth)
624 #endif 624 #endif
625 { 625 {
626 RuntimeEnabledFeatures::setHTMLPopupMenuEnabled(false); 626 RuntimeEnabledFeatures::setHTMLPopupMenuEnabled(false);
627 registerMockedURLLoad("select_rtl_width.html"); 627 registerMockedURLLoad("select_rtl_width.html");
628 loadFrame(mainFrame(), "select_rtl_width.html"); 628 loadFrame(mainFrame(), "select_rtl_width.html");
629 HTMLSelectElement* select = toHTMLSelectElement(mainFrame()->frame()->docume nt()->focusedElement()); 629 HTMLSelectElement* select = toHTMLSelectElement(mainFrame()->frame()->docume nt()->focusedElement());
630 LayoutMenuList* menuList = toLayoutMenuList(select->renderer()); 630 LayoutMenuList* menuList = toLayoutMenuList(select->layoutObject());
631 ASSERT(menuList); 631 ASSERT(menuList);
632 menuList->showPopup(); 632 menuList->showPopup();
633 ASSERT(popupOpen()); 633 ASSERT(popupOpen());
634 PopupListBox* listBox = webView()->selectPopup()->listBox(); 634 PopupListBox* listBox = webView()->selectPopup()->listBox();
635 int ltrWidth = listBox->getRowBaseWidth(0); 635 int ltrWidth = listBox->getRowBaseWidth(0);
636 int rtlWidth = listBox->getRowBaseWidth(1); 636 int rtlWidth = listBox->getRowBaseWidth(1);
637 EXPECT_LT(rtlWidth, ltrWidth); 637 EXPECT_LT(rtlWidth, ltrWidth);
638 } 638 }
639 639
640 } // namespace 640 } // namespace
OLDNEW
« no previous file with comments | « Source/web/LinkHighlight.cpp ('k') | Source/web/SpellCheckerClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698