Changeset 149712 in webkit


Ignore:
Timestamp:
May 7, 2013 11:24:33 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[EFL] Remove the ewk_settings_shadow_dom_enable_set/get APIs from unit test
https://bugs.webkit.org/show_bug.cgi?id=115771

Patch by Jinwoo Song <jinwoo7.song@samsung.com> on 2013-05-07
Reviewed by Gyuyoung Kim.

Unit test is failing since r149702. Remove the test case related to shadow dom.

  • tests/test_ewk_setting.cpp:
Location:
trunk/Source/WebKit/efl
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/efl/ChangeLog

    r149174 r149712  
     12013-05-07  Jinwoo Song  <jinwoo7.song@samsung.com>
     2
     3        [EFL] Remove the ewk_settings_shadow_dom_enable_set/get APIs from unit test
     4        https://bugs.webkit.org/show_bug.cgi?id=115771
     5
     6        Reviewed by Gyuyoung Kim.
     7
     8        Unit test is failing since r149702. Remove the test case related to shadow dom.
     9
     10        * tests/test_ewk_setting.cpp:
     11
    1122013-04-26  Jose Lejin PJ  <jose.lejin@gmail.com>
    213
  • trunk/Source/WebKit/efl/tests/test_ewk_setting.cpp

    r149174 r149712  
    158158
    159159/**
    160  * @brief Unit test for checking set/get of Shadow DOM functionality Enables/Disables status by ewk settings API.
    161  */
    162 TEST_F(EWKTestBase, ewk_settings_shadow_dom_enable)
    163 {
    164     ASSERT_FALSE(ewk_settings_shadow_dom_enable_get());
    165 
    166     ewk_settings_shadow_dom_enable_set(true);
    167     ASSERT_TRUE(ewk_settings_shadow_dom_enable_get());
    168 
    169     ewk_settings_shadow_dom_enable_set(false);
    170     ASSERT_FALSE(ewk_settings_shadow_dom_enable_get());
    171 }
    172 
    173 /**
    174160 * @brief Unit test for checking set/get of maximum number of pages in the memory page cache by ewk settings API.
    175161 */
Note: See TracChangeset for help on using the changeset viewer.