Line 208: |
Line 208: |
| * "/layout/dialogheader/WirelessSwitchOff.arc" was removed | | * "/layout/dialogheader/WirelessSwitchOff.arc" was removed |
| * "/layout/favorite/favicondata/KOR.arc" updated | | * "/layout/favorite/favicondata/KOR.arc" updated |
| + | |- |
| + | | 1.7610 |
| + | | v6149 |
| + | | [[9.9.0-26]] |
| + | | See below. |
| |} | | |} |
| + | |
| + | === Old3DS v9.9 === |
| + | ExeFS:/.code was updated. |
| + | |
| + | The only changes in RomFS were file-updating, the following files were updated: |
| + | /browser/rootca.pem |
| + | /cro/oss.cro |
| + | /cro/static.crs |
| + | /cro/webkit.cro |
| + | /.crr/static.crr |
| + | /message/CN_Simp_Chinese/spider.msbt |
| + | /message/EU_Dutch/spider.msbt |
| + | /message/EU_English/spider.msbt |
| + | /message/EU_French/spider.msbt |
| + | /message/EU_German/spider.msbt |
| + | /message/EU_Italian/spider.msbt |
| + | /message/EU_Portuguese/spider.msbt |
| + | /message/EU_Russian/spider.msbt |
| + | /message/EU_Spanish/spider.msbt |
| + | /message/JP_Japanese/spider.msbt |
| + | /message/KR_Hangeul/spider.msbt |
| + | /message/TW_English/spider.msbt |
| + | /message/TW_Trad_Chinese/spider.msbt |
| + | /message/US_English/spider.msbt |
| + | /message/US_French/spider.msbt |
| + | /message/US_Portuguese/spider.msbt |
| + | /message/US_Spanish/spider.msbt |
| + | |
| + | OSS diff for v9.5 and v9.9, without the .dox changes: |
| + | |
| + | diff --git a/3DS_InternetBrowser_OpenSources_JP_US_EU_KR_TW_HK_CN_9.5.0(23J_23U_23E_19K_18T_3C)/WKC/WebKit/WKC/webkit/WKCVersion.h b/3DS_InternetBrowser_OpenSources_JP_US_EU_KR_TW_HK_CN_9.9.0/WKC/WebKit/WKC/webkit/WKCVersion.h |
| + | index be5ff09..55a7274 100644 |
| + | --- a/3DS_InternetBrowser_OpenSources_JP_US_EU_KR_TW_HK_CN_9.5.0(23J_23U_23E_19K_18T_3C)/WKC/WebKit/WKC/webkit/WKCVersion.h |
| + | +++ b/3DS_InternetBrowser_OpenSources_JP_US_EU_KR_TW_HK_CN_9.9.0/WKC/WebKit/WKC/webkit/WKCVersion.h |
| + | @@ -29,7 +29,7 @@ |
| + | #define WKC_VERSION_CHECK(major, minor, micro) \ |
| + | (((major)*10000) + ((minor)*100) + (micro)) >= ((WKC_VERSION_MAJOR*10000) + (WKC_VERSION_MINOR*100) + (WKC_VERSION_MICRO)) |
| + | |
| + | -#define WKC_CUSTOMER_RELEASE_VERSION "1.8.14" |
| + | +#define WKC_CUSTOMER_RELEASE_VERSION "1.8.16" |
| + | |
| + | #define WKC_WEBKIT_VERSION "532.7" |
| + | |
| + | diff --git a/3DS_InternetBrowser_OpenSources_JP_US_EU_KR_TW_HK_CN_9.5.0(23J_23U_23E_19K_18T_3C)/webkit/WebCore/rendering/RenderBox.cpp b/3DS_InternetBrowser_OpenSources_JP_US_EU_KR_TW_HK_CN_9.9.0/webkit/WebCore/rendering/RenderBox.cpp |
| + | index da4127e..d03403e 100644 |
| + | --- a/3DS_InternetBrowser_OpenSources_JP_US_EU_KR_TW_HK_CN_9.5.0(23J_23U_23E_19K_18T_3C)/webkit/WebCore/rendering/RenderBox.cpp |
| + | +++ b/3DS_InternetBrowser_OpenSources_JP_US_EU_KR_TW_HK_CN_9.9.0/webkit/WebCore/rendering/RenderBox.cpp |
| + | @@ -305,23 +305,23 @@ int RenderBox::scrollHeight() const |
| + | |
| + | int RenderBox::scrollLeft() const |
| + | { |
| + | - return hasOverflowClip() ? layer()->scrollXOffset() : 0; |
| + | + return layer() && hasOverflowClip() ? layer()->scrollXOffset() : 0; |
| + | } |
| + | |
| + | int RenderBox::scrollTop() const |
| + | { |
| + | - return hasOverflowClip() ? layer()->scrollYOffset() : 0; |
| + | + return layer() && hasOverflowClip() ? layer()->scrollYOffset() : 0; |
| + | } |
| + | |
| + | void RenderBox::setScrollLeft(int newLeft) |
| + | { |
| + | - if (hasOverflowClip()) |
| + | + if (hasOverflowClip() && layer()) |
| + | layer()->scrollToXOffset(newLeft); |
| + | } |
| + | |
| + | void RenderBox::setScrollTop(int newTop) |
| + | { |
| + | - if (hasOverflowClip()) |
| + | + if (hasOverflowClip() && layer()) |
| + | layer()->scrollToYOffset(newTop); |
| + | } |
| | | |
| ==Web Standards== | | ==Web Standards== |