NewFirstVisuallyNonEmptyLayoutForImages.cpp 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /*
  2. * Copyright (C) 2012 Apple Inc. All rights reserved.
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions
  6. * are met:
  7. * 1. Redistributions of source code must retain the above copyright
  8. * notice, this list of conditions and the following disclaimer.
  9. * 2. Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. *
  13. * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
  14. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
  15. * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  16. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
  17. * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  18. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  19. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  20. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  21. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  22. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  23. * THE POSSIBILITY OF SUCH DAMAGE.
  24. */
  25. #include "config.h"
  26. #include "PlatformUtilities.h"
  27. #include "PlatformWebView.h"
  28. #include <WebKit2/WKContextPrivate.h>
  29. namespace TestWebKitAPI {
  30. static bool didFirstLayoutAchieved;
  31. static bool didFirstVisuallyNonEmptyLayoutAchieved;
  32. static bool didHitRelevantRepaintedObjectsAreaThresholdAchieved;
  33. static bool didUnlockAllLayoutMilestones;
  34. static void didLayout(WKPageRef, WKLayoutMilestones type, WKTypeRef, const void *)
  35. {
  36. switch (type) {
  37. case kWKDidFirstLayout:
  38. didFirstLayoutAchieved = true;
  39. break;
  40. case kWKDidFirstVisuallyNonEmptyLayout:
  41. didFirstVisuallyNonEmptyLayoutAchieved = true;
  42. break;
  43. case kWKDidHitRelevantRepaintedObjectsAreaThreshold:
  44. didHitRelevantRepaintedObjectsAreaThresholdAchieved = true;
  45. break;
  46. default:
  47. break;
  48. }
  49. if (didFirstLayoutAchieved && didFirstVisuallyNonEmptyLayoutAchieved && didHitRelevantRepaintedObjectsAreaThresholdAchieved)
  50. didUnlockAllLayoutMilestones = true;
  51. }
  52. static void setPageLoaderClient(WKPageRef page)
  53. {
  54. WKPageLoaderClient loaderClient;
  55. memset(&loaderClient, 0, sizeof(loaderClient));
  56. loaderClient.version = kWKPageLoaderClientCurrentVersion;
  57. loaderClient.didLayout = didLayout;
  58. WKPageSetPageLoaderClient(page, &loaderClient);
  59. }
  60. // FIXME: This test has been broken since http://trac.webkit.org/changeset/115752 It's failing because
  61. // the frame load is completing before didLayout() manages to unlock the
  62. // kWKDidHitRelevantRepaintedObjectsAreaThreshold achievement. We probably need to fix this by making
  63. // this test have a long-running resource.
  64. TEST(WebKit2, DISABLED_NewFirstVisuallyNonEmptyLayoutForImages)
  65. {
  66. WKRetainPtr<WKContextRef> context(AdoptWK, Util::createContextForInjectedBundleTest("NewFirstVisuallyNonEmptyLayoutForImagesTest"));
  67. PlatformWebView webView(context.get());
  68. setPageLoaderClient(webView.page());
  69. // This test is expected to succeed because lots-of-images.html is a large document and the relevant painted
  70. // objects take up more than 10% of the view.
  71. WKPageLoadURL(webView.page(), adoptWK(Util::createURLForResource("lots-of-images", "html")).get());
  72. Util::run(&didUnlockAllLayoutMilestones);
  73. EXPECT_TRUE(didUnlockAllLayoutMilestones);
  74. }
  75. } // namespace TestWebKitAPI