summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2016-04-26 10:47:47 +0200
committerMartin Stransky <stransky@redhat.com>2016-04-26 10:47:47 +0200
commit559127bb980783a679a462aa0db6ad822b57a891 (patch)
treedb877a58699ae1681866a91cb962dbc549c4d3e6
parentAdded nasm.base64 build fix (mozbz#1266366) (diff)
parentDon't use libvpx on F23 (diff)
downloadlibrewolf-fedora-ff-559127bb980783a679a462aa0db6ad822b57a891.tar.gz
librewolf-fedora-ff-559127bb980783a679a462aa0db6ad822b57a891.tar.bz2
librewolf-fedora-ff-559127bb980783a679a462aa0db6ad822b57a891.zip
Merge branch 'master' of ssh://pkgs.fedoraproject.org/rpms/firefox
-rw-r--r--firefox-gtk3-20.patch2
-rw-r--r--firefox.spec4
-rw-r--r--mozilla-1263145.patch112
3 files changed, 2 insertions, 116 deletions
diff --git a/firefox-gtk3-20.patch b/firefox-gtk3-20.patch
index 4711849..be72bfe 100644
--- a/firefox-gtk3-20.patch
+++ b/firefox-gtk3-20.patch
@@ -591,7 +591,7 @@ diff -up firefox-46.0/widget/gtk/gtk3drawing.c.gtk3-20 firefox-46.0/widget/gtk/g
- style = gtk_widget_get_style_context(GTK_WIDGET(scrollbar));
- gtk_style_context_save(style);
- gtk_style_context_add_class(style, GTK_STYLE_CLASS_TROUGH);
-+ if (widget == MOZ_GTK_SCROLLBAR_TRACK_HORIZONTAL) {
++ if (widget == MOZ_GTK_SCROLLBAR_HORIZONTAL) {
+ gtk_widget_set_direction(GTK_WIDGET(gHorizScrollbar.widget), direction);
+ style = gHorizScrollbar.scroll.style;
+ }
diff --git a/firefox.spec b/firefox.spec
index 89fa3d3..d0301df 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -12,7 +12,7 @@
%define system_cairo 0
# Use system libvpx?
-%if 0%{?fedora} > 22
+%if 0%{?fedora} > 23
%define system_libvpx 1
%else
%define system_libvpx 0
@@ -129,7 +129,6 @@ Patch224: mozilla-1170092.patch
Patch304: mozilla-1253216.patch
Patch305: mozilla-1245076.patch
Patch306: mozilla-1245076-1.patch
-Patch307: mozilla-1263145.patch
Patch400: mozilla-1255590.patch
Patch401: mozilla-1266366-branch64.patch
@@ -275,7 +274,6 @@ cd %{tarballdir}
%if 0%{?fedora} > 23
%patch304 -p2 -b .1253216
%patch222 -p1 -b .gtk3-20
-%patch307 -p1 -b .1263145
%endif
%patch305 -p1 -b .1245076
%patch306 -p1 -b .1245076-1
diff --git a/mozilla-1263145.patch b/mozilla-1263145.patch
deleted file mode 100644
index f69f03e..0000000
--- a/mozilla-1263145.patch
+++ /dev/null
@@ -1,112 +0,0 @@
-diff -up firefox-45.0.2/widget/gtk/gtk3drawing.c.1263145 firefox-45.0.2/widget/gtk/gtk3drawing.c
---- firefox-45.0.2/widget/gtk/gtk3drawing.c.1263145 2016-04-21 14:30:46.555526845 +0200
-+++ firefox-45.0.2/widget/gtk/gtk3drawing.c 2016-04-21 14:32:20.442882060 +0200
-@@ -1693,6 +1693,60 @@ moz_gtk_entry_paint(cairo_t *cr, GdkRect
- return MOZ_GTK_SUCCESS;
- }
-
-+static gint
-+moz_gtk_text_view_paint(cairo_t *cr, GdkRectangle* rect,
-+ GtkWidgetState* state,
-+ GtkTextDirection direction)
-+{
-+ GtkStyleContext* style;
-+ GtkStyleContext* style_frame;
-+
-+ ensure_text_view_widget();
-+ ensure_scrolled_window_widget();
-+
-+ gtk_widget_set_direction(gTextViewWidget, direction);
-+ gtk_widget_set_direction(gScrolledWindowWidget, direction);
-+
-+ style = gtk_widget_get_style_context(gTextViewWidget);
-+ gtk_style_context_save(style);
-+ gtk_style_context_add_class(style, GTK_STYLE_CLASS_VIEW);
-+
-+ style_frame = gtk_widget_get_style_context(gScrolledWindowWidget);
-+ gtk_style_context_save(style_frame);
-+ gtk_style_context_add_class(style_frame, GTK_STYLE_CLASS_FRAME);
-+
-+ if (state->focused && !state->disabled) {
-+ gtk_style_context_set_state(style, GTK_STATE_FLAG_FOCUSED);
-+ }
-+
-+ if (state->disabled) {
-+ gtk_style_context_set_state(style, GTK_STATE_FLAG_INSENSITIVE);
-+ gtk_style_context_set_state(style_frame, GTK_STATE_FLAG_INSENSITIVE);
-+ }
-+ gtk_render_frame(style_frame, cr, rect->x, rect->y, rect->width, rect->height);
-+
-+ /* only handle disabled and normal states, otherwise the whole background
-+ * area will be painted differently with other states */
-+ GtkStateFlags state_flags = state->disabled ? GTK_STATE_FLAG_INSENSITIVE :
-+ GTK_STATE_FLAG_NORMAL;
-+ GtkBorder border, padding;
-+ gtk_style_context_get_border(style, state_flags, &border);
-+ gtk_style_context_get_padding(style, state_flags, &padding);
-+
-+ gint xthickness = border.left + padding.left;
-+ gint ythickness = border.top + padding.top;
-+
-+ gtk_render_background(style_frame, cr,
-+ rect->x + xthickness, rect->y + ythickness,
-+ rect->width - 2 * xthickness,
-+ rect->height - 2 * ythickness);
-+
-+ gtk_style_context_restore(style);
-+ gtk_style_context_restore(style_frame);
-+
-+ return MOZ_GTK_SUCCESS;
-+}
-+
- static gint
- moz_gtk_treeview_paint(cairo_t *cr, GdkRectangle* rect,
- GtkWidgetState* state,
-@@ -2915,6 +2969,7 @@ moz_gtk_get_widget_border(GtkThemeWidget
-
- return MOZ_GTK_SUCCESS;
- }
-+ case MOZ_GTK_TEXT_VIEW:
- case MOZ_GTK_TREEVIEW:
- {
- ensure_scrolled_window_widget();
-@@ -3498,6 +3553,9 @@ moz_gtk_widget_paint(GtkThemeWidgetType
- return moz_gtk_entry_paint(cr, rect, state,
- &gComboBoxEntryTextarea, direction);
- break;
-+ case MOZ_GTK_TEXT_VIEW:
-+ return moz_gtk_text_view_paint(cr, rect, state, direction);
-+ break;
- case MOZ_GTK_CHECKBUTTON_CONTAINER:
- case MOZ_GTK_RADIOBUTTON_CONTAINER:
- return moz_gtk_container_paint(cr, rect, state,
-diff -up firefox-45.0.2/widget/gtk/gtkdrawing.h.1263145 firefox-45.0.2/widget/gtk/gtkdrawing.h
---- firefox-45.0.2/widget/gtk/gtkdrawing.h.1263145 2016-04-21 14:30:46.555526845 +0200
-+++ firefox-45.0.2/widget/gtk/gtkdrawing.h 2016-04-21 14:30:46.560526864 +0200
-@@ -128,6 +128,8 @@ typedef enum {
- MOZ_GTK_GRIPPER,
- /* Paints a GtkEntry. */
- MOZ_GTK_ENTRY,
-+ /* Paints a GtkTextView. */
-+ MOZ_GTK_TEXT_VIEW,
- /* Paints a GtkOptionMenu. */
- MOZ_GTK_DROPDOWN,
- /* Paints a dropdown arrow (a GtkButton containing a down GtkArrow). */
-diff -up firefox-45.0.2/widget/gtk/nsNativeThemeGTK.cpp.1263145 firefox-45.0.2/widget/gtk/nsNativeThemeGTK.cpp
---- firefox-45.0.2/widget/gtk/nsNativeThemeGTK.cpp.1263145 2016-04-21 14:30:46.556526849 +0200
-+++ firefox-45.0.2/widget/gtk/nsNativeThemeGTK.cpp 2016-04-21 14:30:46.560526864 +0200
-@@ -503,8 +503,14 @@ nsNativeThemeGTK::GetGtkWidgetAndState(u
- break;
- case NS_THEME_NUMBER_INPUT:
- case NS_THEME_TEXTFIELD:
-+ aGtkWidgetType = MOZ_GTK_ENTRY;
-+ break;
- case NS_THEME_TEXTFIELD_MULTILINE:
-+#if (MOZ_WIDGET_GTK == 3)
-+ aGtkWidgetType = MOZ_GTK_TEXT_VIEW;
-+#else
- aGtkWidgetType = MOZ_GTK_ENTRY;
-+#endif
- break;
- case NS_THEME_LISTBOX:
- case NS_THEME_TREEVIEW:
bgstack15