Changeset 159550 in webkit


Ignore:
Timestamp:
Nov 19, 2013 10:57:41 PM (10 years ago)
Author:
rniwa@webkit.org
Message:

Enable HTMLTemplateElement on Mac port
https://bugs.webkit.org/show_bug.cgi?id=124637

Reviewed by Tim Horton.

Source/JavaScriptCore:

  • Configurations/FeatureDefines.xcconfig:

Source/WebCore:

Enabled the feature.

  • Configurations/FeatureDefines.xcconfig:

Source/WebKit/mac:

  • Configurations/FeatureDefines.xcconfig:

Source/WebKit2:

  • Configurations/FeatureDefines.xcconfig:

LayoutTests:

Unskip template element tests except fast/dom/HTMLTemplateElement/cycles-in-shadow.html
which depends on ENABLE(SHADOW_DOM).

  • platform/mac/TestExpectations:
Location:
trunk
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r159545 r159550  
     12013-11-19  Ryosuke Niwa  <rniwa@webkit.org>
     2
     3        Enable HTMLTemplateElement on Mac port
     4        https://bugs.webkit.org/show_bug.cgi?id=124637
     5
     6        Reviewed by Tim Horton.
     7
     8        Unskip template element tests except fast/dom/HTMLTemplateElement/cycles-in-shadow.html
     9        which depends on ENABLE(SHADOW_DOM).
     10
     11        * platform/mac/TestExpectations:
     12
    1132013-11-19  Filip Pizlo  <fpizlo@apple.com>
    214
  • trunk/LayoutTests/platform/mac/TestExpectations

    r159510 r159550  
    339339# ENABLE(SHADOW_DOM) is disabled.
    340340fast/dom/shadow
     341fast/dom/HTMLTemplateElement/cycles-in-shadow.html
    341342editing/shadow
    342343accessibility/corresponding-control-deleted-crash.html
    343344editing/text-iterator/basic-iteration-shadowdom.html
    344 
    345 # ENABLE(TEMPLATE_ELEMENT) is disabled.
    346 fast/dom/HTMLTemplateElement
    347 html5lib/generated/run-template-data.html
    348 html5lib/generated/run-template-write.html
    349 fast/xsl/xslt-xhtml-template.xml
    350 fast/xpath/xpath-template-element.html
    351 fast/xsl/xslt-processor-template.html
    352345
    353346# JSC does not support setIsolatedWorldSecurityOrigin
  • trunk/Source/JavaScriptCore/ChangeLog

    r159547 r159550  
     12013-11-19  Ryosuke Niwa  <rniwa@webkit.org>
     2
     3        Enable HTMLTemplateElement on Mac port
     4        https://bugs.webkit.org/show_bug.cgi?id=124637
     5
     6        Reviewed by Tim Horton.
     7
     8        * Configurations/FeatureDefines.xcconfig:
     9
    1102013-11-19  Filip Pizlo  <fpizlo@apple.com>
    211
  • trunk/Source/JavaScriptCore/Configurations/FeatureDefines.xcconfig

    r159321 r159550  
    168168ENABLE_SVG = ENABLE_SVG;
    169169ENABLE_SVG_FONTS = ENABLE_SVG_FONTS;
    170 ENABLE_TEMPLATE_ELEMENT = ;
     170ENABLE_TEMPLATE_ELEMENT = ENABLE_TEMPLATE_ELEMENT;
    171171ENABLE_TEXT_AUTOSIZING = ;
    172172ENABLE_THREADED_HTML_PARSER = ;
  • trunk/Source/WebCore/ChangeLog

    r159548 r159550  
     12013-11-19  Ryosuke Niwa  <rniwa@webkit.org>
     2
     3        Enable HTMLTemplateElement on Mac port
     4        https://bugs.webkit.org/show_bug.cgi?id=124637
     5
     6        Reviewed by Tim Horton.
     7
     8        Enabled the feature.
     9
     10        * Configurations/FeatureDefines.xcconfig:
     11
    1122013-11-19  Jinwoo Song  <jinwoo7.song@samsung.com>
    213
  • trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig

    r159321 r159550  
    168168ENABLE_SVG = ENABLE_SVG;
    169169ENABLE_SVG_FONTS = ENABLE_SVG_FONTS;
    170 ENABLE_TEMPLATE_ELEMENT = ;
     170ENABLE_TEMPLATE_ELEMENT = ENABLE_TEMPLATE_ELEMENT;
    171171ENABLE_TEXT_AUTOSIZING = ;
    172172ENABLE_THREADED_HTML_PARSER = ;
  • trunk/Source/WebKit/mac/ChangeLog

    r159487 r159550  
     12013-11-19  Ryosuke Niwa  <rniwa@webkit.org>
     2
     3        Enable HTMLTemplateElement on Mac port
     4        https://bugs.webkit.org/show_bug.cgi?id=124637
     5
     6        Reviewed by Tim Horton.
     7
     8        * Configurations/FeatureDefines.xcconfig:
     9
    1102013-11-18  Commit Queue  <commit-queue@webkit.org>
    211
  • trunk/Source/WebKit/mac/Configurations/FeatureDefines.xcconfig

    r159179 r159550  
    168168ENABLE_SVG = ENABLE_SVG;
    169169ENABLE_SVG_FONTS = ENABLE_SVG_FONTS;
    170 ENABLE_TEMPLATE_ELEMENT = ;
     170ENABLE_TEMPLATE_ELEMENT = ENABLE_TEMPLATE_ELEMENT;
    171171ENABLE_TEXT_AUTOSIZING = ;
    172172ENABLE_THREADED_HTML_PARSER = ;
  • trunk/Source/WebKit2/ChangeLog

    r159511 r159550  
     12013-11-19  Ryosuke Niwa  <rniwa@webkit.org>
     2
     3        Enable HTMLTemplateElement on Mac port
     4        https://bugs.webkit.org/show_bug.cgi?id=124637
     5
     6        Reviewed by Tim Horton.
     7
     8        * Configurations/FeatureDefines.xcconfig:
     9
    1102013-11-19  Brady Eidson  <beidson@apple.com>
    211
  • trunk/Source/WebKit2/Configurations/FeatureDefines.xcconfig

    r159179 r159550  
    168168ENABLE_SVG = ENABLE_SVG;
    169169ENABLE_SVG_FONTS = ENABLE_SVG_FONTS;
    170 ENABLE_TEMPLATE_ELEMENT = ;
     170ENABLE_TEMPLATE_ELEMENT = ENABLE_TEMPLATE_ELEMENT;
    171171ENABLE_TEXT_AUTOSIZING = ;
    172172ENABLE_THREADED_HTML_PARSER = ;
Note: See TracChangeset for help on using the changeset viewer.