| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2011, 2012 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 24 matching lines...) Expand all Loading... |
| 35 #include "core/dom/Element.h" | 35 #include "core/dom/Element.h" |
| 36 #include "core/frame/FrameView.h" | 36 #include "core/frame/FrameView.h" |
| 37 #include "core/frame/LocalFrame.h" | 37 #include "core/frame/LocalFrame.h" |
| 38 #include "core/frame/Settings.h" | 38 #include "core/frame/Settings.h" |
| 39 #include "core/html/HTMLDocument.h" | 39 #include "core/html/HTMLDocument.h" |
| 40 #include "core/html/HTMLIFrameElement.h" | 40 #include "core/html/HTMLIFrameElement.h" |
| 41 #include "core/html/HTMLInputElement.h" | 41 #include "core/html/HTMLInputElement.h" |
| 42 #include "core/html/HTMLTextAreaElement.h" | 42 #include "core/html/HTMLTextAreaElement.h" |
| 43 #include "core/loader/FrameLoadRequest.h" | 43 #include "core/loader/FrameLoadRequest.h" |
| 44 #include "core/page/Chrome.h" | 44 #include "core/page/Chrome.h" |
| 45 #include "core/page/Page.h" |
| 45 #include "core/rendering/RenderLayer.h" | 46 #include "core/rendering/RenderLayer.h" |
| 46 #include "core/rendering/RenderView.h" | 47 #include "core/rendering/RenderView.h" |
| 47 #include "platform/KeyboardCodes.h" | 48 #include "platform/KeyboardCodes.h" |
| 48 #include "platform/geometry/IntSize.h" | 49 #include "platform/geometry/IntSize.h" |
| 49 #include "platform/graphics/Color.h" | 50 #include "platform/graphics/Color.h" |
| 50 #include "public/platform/Platform.h" | 51 #include "public/platform/Platform.h" |
| 51 #include "public/platform/WebDragData.h" | 52 #include "public/platform/WebDragData.h" |
| 52 #include "public/platform/WebSize.h" | 53 #include "public/platform/WebSize.h" |
| 53 #include "public/platform/WebThread.h" | 54 #include "public/platform/WebThread.h" |
| 54 #include "public/platform/WebUnitTestSupport.h" | 55 #include "public/platform/WebUnitTestSupport.h" |
| (...skipping 1942 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1997 | 1998 |
| 1998 EXPECT_EQ(0, client.getUserGestureNotificationsCount()); | 1999 EXPECT_EQ(0, client.getUserGestureNotificationsCount()); |
| 1999 | 2000 |
| 2000 EXPECT_TRUE(tapElementById(webView, WebInputEvent::GestureTap, WebString::fr
omUTF8("target"))); | 2001 EXPECT_TRUE(tapElementById(webView, WebInputEvent::GestureTap, WebString::fr
omUTF8("target"))); |
| 2001 | 2002 |
| 2002 EXPECT_EQ(1, client.getUserGestureNotificationsCount()); | 2003 EXPECT_EQ(1, client.getUserGestureNotificationsCount()); |
| 2003 webView->setAutofillClient(0); | 2004 webView->setAutofillClient(0); |
| 2004 } | 2005 } |
| 2005 | 2006 |
| 2006 } // namespace | 2007 } // namespace |
| OLD | NEW |