| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 50 #include "WebViewImpl.h" | 50 #include "WebViewImpl.h" | 
| 51 #include "WebWidget.h" | 51 #include "WebWidget.h" | 
| 52 #include "core/dom/Document.h" | 52 #include "core/dom/Document.h" | 
| 53 #include "core/dom/Element.h" | 53 #include "core/dom/Element.h" | 
| 54 #include "core/html/HTMLDocument.h" | 54 #include "core/html/HTMLDocument.h" | 
| 55 #include "core/html/HTMLInputElement.h" | 55 #include "core/html/HTMLInputElement.h" | 
| 56 #include "core/loader/FrameLoadRequest.h" | 56 #include "core/loader/FrameLoadRequest.h" | 
| 57 #include "core/frame/FrameView.h" | 57 #include "core/frame/FrameView.h" | 
| 58 #include "core/page/Chrome.h" | 58 #include "core/page/Chrome.h" | 
| 59 #include "core/frame/Settings.h" | 59 #include "core/frame/Settings.h" | 
| 60 #include "core/platform/chromium/KeyboardCodes.h" | 60 #include "platform/KeyboardCodes.h" | 
| 61 #include "platform/graphics/Color.h" | 61 #include "platform/graphics/Color.h" | 
| 62 #include "public/platform/Platform.h" | 62 #include "public/platform/Platform.h" | 
| 63 #include "public/platform/WebSize.h" | 63 #include "public/platform/WebSize.h" | 
| 64 #include "public/platform/WebThread.h" | 64 #include "public/platform/WebThread.h" | 
| 65 #include "public/platform/WebUnitTestSupport.h" | 65 #include "public/platform/WebUnitTestSupport.h" | 
| 66 #include "public/web/WebWidgetClient.h" | 66 #include "public/web/WebWidgetClient.h" | 
| 67 #include "third_party/skia/include/core/SkBitmap.h" | 67 #include "third_party/skia/include/core/SkBitmap.h" | 
| 68 #include "third_party/skia/include/core/SkBitmapDevice.h" | 68 #include "third_party/skia/include/core/SkBitmapDevice.h" | 
| 69 #include "third_party/skia/include/core/SkCanvas.h" | 69 #include "third_party/skia/include/core/SkCanvas.h" | 
| 70 | 70 | 
| (...skipping 1305 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1376     EXPECT_STREQ("1970-W01", inputElement->value().utf8().data()); | 1376     EXPECT_STREQ("1970-W01", inputElement->value().utf8().data()); | 
| 1377 | 1377 | 
| 1378     openDateTimeChooser(webViewImpl, inputElement); | 1378     openDateTimeChooser(webViewImpl, inputElement); | 
| 1379     client.chooserCompletion()->didChooseValue(std::numeric_limits<double>::quie
      t_NaN()); | 1379     client.chooserCompletion()->didChooseValue(std::numeric_limits<double>::quie
      t_NaN()); | 
| 1380     client.clearChooserCompletion(); | 1380     client.clearChooserCompletion(); | 
| 1381     EXPECT_STREQ("", inputElement->value().utf8().data()); | 1381     EXPECT_STREQ("", inputElement->value().utf8().data()); | 
| 1382 } | 1382 } | 
| 1383 #endif | 1383 #endif | 
| 1384 | 1384 | 
| 1385 } | 1385 } | 
| OLD | NEW | 
|---|