Diff
Modified: trunk/LayoutTests/ChangeLog (186090 => 186091)
--- trunk/LayoutTests/ChangeLog 2015-06-29 22:42:01 UTC (rev 186090)
+++ trunk/LayoutTests/ChangeLog 2015-06-29 22:59:51 UTC (rev 186091)
@@ -1,3 +1,15 @@
+2015-06-29 Dean Jackson <[email protected]>
+
+ Temporarily disable PICTURE_SIZES
+ https://bugs.webkit.org/show_bug.cgi?id=146435
+ <rdar://problem/21087013>
+
+ Reviewed by Tim Horton.
+
+ Skip HTMLImageElement.sizes tests.
+
+ * TestExpectations:
+
2015-06-29 Adam Bergkvist <[email protected]>
WebRTC: Update the MediaStream API
Modified: trunk/LayoutTests/TestExpectations (186090 => 186091)
--- trunk/LayoutTests/TestExpectations 2015-06-29 22:42:01 UTC (rev 186090)
+++ trunk/LayoutTests/TestExpectations 2015-06-29 22:59:51 UTC (rev 186091)
@@ -523,3 +523,6 @@
fast/images/gif-loop-count.html [ ImageOnlyFailure ]
webkit.org/b/146182 editing/selection/leak-document-with-selection-inside.html [ Pass Failure ]
+
+webkit.org/b/146434 fast/dom/HTMLImageElement/sizes [ Skip ]
+
Modified: trunk/Source/_javascript_Core/ChangeLog (186090 => 186091)
--- trunk/Source/_javascript_Core/ChangeLog 2015-06-29 22:42:01 UTC (rev 186090)
+++ trunk/Source/_javascript_Core/ChangeLog 2015-06-29 22:59:51 UTC (rev 186091)
@@ -1,3 +1,16 @@
+2015-06-29 Dean Jackson <[email protected]>
+
+ Temporarily disable PICTURE_SIZES
+ https://bugs.webkit.org/show_bug.cgi?id=146435
+ <rdar://problem/21087013>
+
+ Reviewed by Tim Horton.
+
+ Temporarily disable PICTURE_SIZES because it causes problems with out
+ of date <picture> polyfills.
+
+ * Configurations/FeatureDefines.xcconfig:
+
2015-06-29 Youenn Fablet <[email protected]>
Binding generator should allow using JSC::Value for "any" parameter in lieu of ScriptValue
Modified: trunk/Source/_javascript_Core/Configurations/FeatureDefines.xcconfig (186090 => 186091)
--- trunk/Source/_javascript_Core/Configurations/FeatureDefines.xcconfig 2015-06-29 22:42:01 UTC (rev 186090)
+++ trunk/Source/_javascript_Core/Configurations/FeatureDefines.xcconfig 2015-06-29 22:59:51 UTC (rev 186091)
@@ -149,7 +149,7 @@
ENABLE_NOSNIFF = ;
ENABLE_NOTIFICATIONS[sdk=macosx*] = ENABLE_NOTIFICATIONS;
ENABLE_PDFKIT_PLUGIN[sdk=macosx*] = ENABLE_PDFKIT_PLUGIN;
-ENABLE_PICTURE_SIZES = ENABLE_PICTURE_SIZES;
+ENABLE_PICTURE_SIZES = ;
ENABLE_POINTER_LOCK = ;
ENABLE_PROMISES = ENABLE_PROMISES;
ENABLE_PROXIMITY_EVENTS = ;
Modified: trunk/Source/WTF/ChangeLog (186090 => 186091)
--- trunk/Source/WTF/ChangeLog 2015-06-29 22:42:01 UTC (rev 186090)
+++ trunk/Source/WTF/ChangeLog 2015-06-29 22:59:51 UTC (rev 186091)
@@ -1,3 +1,16 @@
+2015-06-29 Dean Jackson <[email protected]>
+
+ Temporarily disable PICTURE_SIZES
+ https://bugs.webkit.org/show_bug.cgi?id=146435
+ <rdar://problem/21087013>
+
+ Reviewed by Tim Horton.
+
+ Temporarily disable PICTURE_SIZES because it causes problems with out
+ of date <picture> polyfills.
+
+ * wtf/FeatureDefines.h:
+
2015-06-26 Antti Koivisto <[email protected]>
Network process hangs fetching disk cache entries
Modified: trunk/Source/WTF/wtf/FeatureDefines.h (186090 => 186091)
--- trunk/Source/WTF/wtf/FeatureDefines.h 2015-06-29 22:42:01 UTC (rev 186090)
+++ trunk/Source/WTF/wtf/FeatureDefines.h 2015-06-29 22:59:51 UTC (rev 186091)
@@ -778,7 +778,7 @@
#endif
#if !defined(ENABLE_PICTURE_SIZES)
-#define ENABLE_PICTURE_SIZES 1
+#define ENABLE_PICTURE_SIZES 0
#endif
#if !defined(ENABLE_WEB_TIMING)
Modified: trunk/Source/WebCore/ChangeLog (186090 => 186091)
--- trunk/Source/WebCore/ChangeLog 2015-06-29 22:42:01 UTC (rev 186090)
+++ trunk/Source/WebCore/ChangeLog 2015-06-29 22:59:51 UTC (rev 186091)
@@ -1,3 +1,16 @@
+2015-06-29 Dean Jackson <[email protected]>
+
+ Temporarily disable PICTURE_SIZES
+ https://bugs.webkit.org/show_bug.cgi?id=146435
+ <rdar://problem/21087013>
+
+ Reviewed by Tim Horton.
+
+ Temporarily disable PICTURE_SIZES because it causes problems with out
+ of date <picture> polyfills.
+
+ * Configurations/FeatureDefines.xcconfig:
+
2015-06-29 Tim Horton <[email protected]>
Fix the build.
Modified: trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig (186090 => 186091)
--- trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig 2015-06-29 22:42:01 UTC (rev 186090)
+++ trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig 2015-06-29 22:59:51 UTC (rev 186091)
@@ -149,7 +149,7 @@
ENABLE_NOSNIFF = ;
ENABLE_NOTIFICATIONS[sdk=macosx*] = ENABLE_NOTIFICATIONS;
ENABLE_PDFKIT_PLUGIN[sdk=macosx*] = ENABLE_PDFKIT_PLUGIN;
-ENABLE_PICTURE_SIZES = ENABLE_PICTURE_SIZES;
+ENABLE_PICTURE_SIZES = ;
ENABLE_POINTER_LOCK = ;
ENABLE_PROMISES = ENABLE_PROMISES;
ENABLE_PROXIMITY_EVENTS = ;
Modified: trunk/Source/WebKit/mac/ChangeLog (186090 => 186091)
--- trunk/Source/WebKit/mac/ChangeLog 2015-06-29 22:42:01 UTC (rev 186090)
+++ trunk/Source/WebKit/mac/ChangeLog 2015-06-29 22:59:51 UTC (rev 186091)
@@ -1,3 +1,16 @@
+2015-06-29 Dean Jackson <[email protected]>
+
+ Temporarily disable PICTURE_SIZES
+ https://bugs.webkit.org/show_bug.cgi?id=146435
+ <rdar://problem/21087013>
+
+ Reviewed by Tim Horton.
+
+ Temporarily disable PICTURE_SIZES because it causes problems with out
+ of date <picture> polyfills.
+
+ * Configurations/FeatureDefines.xcconfig:
+
2015-06-27 Ryosuke Niwa <[email protected]>
Font panel doesn't get updated when bolding text via cmd+b in Mail on OS X
Modified: trunk/Source/WebKit/mac/Configurations/FeatureDefines.xcconfig (186090 => 186091)
--- trunk/Source/WebKit/mac/Configurations/FeatureDefines.xcconfig 2015-06-29 22:42:01 UTC (rev 186090)
+++ trunk/Source/WebKit/mac/Configurations/FeatureDefines.xcconfig 2015-06-29 22:59:51 UTC (rev 186091)
@@ -149,7 +149,7 @@
ENABLE_NOSNIFF = ;
ENABLE_NOTIFICATIONS[sdk=macosx*] = ENABLE_NOTIFICATIONS;
ENABLE_PDFKIT_PLUGIN[sdk=macosx*] = ENABLE_PDFKIT_PLUGIN;
-ENABLE_PICTURE_SIZES = ENABLE_PICTURE_SIZES;
+ENABLE_PICTURE_SIZES = ;
ENABLE_POINTER_LOCK = ;
ENABLE_PROMISES = ENABLE_PROMISES;
ENABLE_PROXIMITY_EVENTS = ;
Modified: trunk/Source/WebKit2/ChangeLog (186090 => 186091)
--- trunk/Source/WebKit2/ChangeLog 2015-06-29 22:42:01 UTC (rev 186090)
+++ trunk/Source/WebKit2/ChangeLog 2015-06-29 22:59:51 UTC (rev 186091)
@@ -1,3 +1,16 @@
+2015-06-29 Dean Jackson <[email protected]>
+
+ Temporarily disable PICTURE_SIZES
+ https://bugs.webkit.org/show_bug.cgi?id=146435
+ <rdar://problem/21087013>
+
+ Temporarily disable PICTURE_SIZES because it causes problems with out
+ of date <picture> polyfills.
+
+ Temporarily disable PICTURE_SIZES until Safari branches.
+
+ * Configurations/FeatureDefines.xcconfig:
+
2015-06-29 Anders Carlsson <[email protected]>
Don't try to access a possibly deallocated WebFrameProxy object
@@ -8,7 +21,7 @@
Make sure to call isMainFrame before calling out to the client inside
WebPageProxy::didFailLoadForFrame, matching what we do for WebPageProxy::didFinishLoadForFrame.
-
+
Also, add a ViewGestureController::didFailLoadForMainFrame function and call that instead of
calling didFinishLoadForMainFrame in the failure case.
Modified: trunk/Source/WebKit2/Configurations/FeatureDefines.xcconfig (186090 => 186091)
--- trunk/Source/WebKit2/Configurations/FeatureDefines.xcconfig 2015-06-29 22:42:01 UTC (rev 186090)
+++ trunk/Source/WebKit2/Configurations/FeatureDefines.xcconfig 2015-06-29 22:59:51 UTC (rev 186091)
@@ -149,7 +149,7 @@
ENABLE_NOSNIFF = ;
ENABLE_NOTIFICATIONS[sdk=macosx*] = ENABLE_NOTIFICATIONS;
ENABLE_PDFKIT_PLUGIN[sdk=macosx*] = ENABLE_PDFKIT_PLUGIN;
-ENABLE_PICTURE_SIZES = ENABLE_PICTURE_SIZES;
+ENABLE_PICTURE_SIZES = ;
ENABLE_POINTER_LOCK = ;
ENABLE_PROMISES = ENABLE_PROMISES;
ENABLE_PROXIMITY_EVENTS = ;