Commit graph

80 commits

Author SHA1 Message Date
Eric Faust
86f89ab7d9 Bug 1095036 - Fix broken copy context menu in Page Info. (r=MattN, a=kwierso) 2014-11-06 16:19:15 -08:00
Jon Morton
1700296f02 Bug 979835: Port BoxObject and its subclasses to WebIDL. r=khuey sr=bz
--HG--
rename : layout/xul/nsIPopupBoxObject.idl => dom/webidl/PopupBoxObject.webidl
rename : layout/xul/tree/nsITreeBoxObject.idl => dom/webidl/TreeBoxObject.webidl
rename : layout/xul/nsBoxObject.cpp => layout/xul/BoxObject.cpp
rename : layout/xul/nsBoxObject.h => layout/xul/BoxObject.h
rename : layout/xul/nsListBoxObject.cpp => layout/xul/ListBoxObject.cpp
rename : layout/xul/nsMenuBoxObject.cpp => layout/xul/MenuBoxObject.cpp
rename : layout/xul/nsPopupBoxObject.cpp => layout/xul/PopupBoxObject.cpp
2014-10-14 13:15:21 -07:00
Bill McCloskey
3814244dbb Bug 1058543 - Make page info work again in e10s (r=mconley) 2014-09-10 17:15:41 -07:00
David Keeler
235c61d9d1 bug 1029797 - remove redundant "Security information for this page" section of Page Info window r=dao 2014-06-24 14:31:06 -07:00
Sami Jaktholm
7818261a54 Bug 736574 - PageInfo: Fix an if-condition causing a failure to sort the media by count. r=Dao 2014-02-11 09:24:03 -05:00
Honza Bambas
2437751f1d Bug 922741 - make callbacks iteration in CacheEntry smarter, r=michal 2013-11-20 23:20:17 +01:00
Honza Bambas
95e22c7a8b Bug 931383 - nsICacheEntryOpenCallback is not defined in pageInfo.js, test_clearHistory_shutdown.js, r=dao 2013-11-06 16:59:05 +01:00
Honza Bambas
894ba59236 Bug 913807 - HTTP cache v2: API+top service+integration+tests, off by default, r=michal+ehsan+mark.finkle+fabrice+mhammond+gavin 2013-09-20 11:11:25 +02:00
Robert O'Callahan
aa60d410a4 Bug 877135. Remove HTMLMediaElement::mozLoadFrom since it's nonstandard and no longer needed (setting 'src' to another element's 'currentSrc' works just as well). r=doublec
--HG--
extra : rebase_source : f1e04fe469a1757bfabfcf79bbf0fec29faee1c7
2013-06-04 15:28:23 +12:00
Tim Taubert
fd966dc96b Bug 860622 - Stop preprocessing browser/base/content/pageinfo/pageInfo.js; r=dolske 2013-04-11 10:35:07 +02:00
Ralph Giles
e1fe5aed01 Bug 857022 - Remove MOZ_MEDIA build-time define. r=ted
We don't test with MOZ_MEDIA=0 so that configuration no longer
works. It's better to drop the switch altogether and enable
this code unconditionally. Per-codec and -feature configure
and runtime options remain available.
2013-04-04 14:09:00 -07:00
Yosy Attias
615abcacc2 Bug 845055 - Check the mime type is not null before testing the mime type itself. r=dao 2013-03-12 12:48:59 -07:00
Trevor Saunders
254bffb739 bug 407956 - make nsITreeView not take a nsISupportsArray* r=neil, bz sr=neil 2013-01-06 19:54:42 -05:00
Boris Zbarsky
1ee4c73471 Bug 838518 part 1. Fix treewalker callers per the API change that was made. r=smaug 2013-02-06 14:22:33 +00:00
Phil Ringnalda
a25bd86007 Back out ed72449453b4 (bug 715075) for browser-chrome orange 2012-11-15 20:40:49 -08:00
Dario Bertero
f27f52412f Bug 715075 - Page Info reads image width and height synchronously after setting src, leads to 0px x 0px if the image isn't in your cache (e.g. after clearing cache). r=mak 2012-11-15 20:34:56 -05:00
Josh Matthews
be721d5624 Bug 795065 - Add privacy status to nsDownload. r=mak sr=bz 2012-10-03 13:10:20 -04:00
Yosy
ef3be55d08 Bug 792968 - Replace some regular expression string matches with String.startsWith and replace /^https?/ URI scheme tests with /^https?$/. r=dao 2012-09-23 21:09:29 +02:00
Benjamin Peterson
ade089d9d0 Backed out changeset 3ca1f19e4c2a (bug 792968) for mochitest-oth failures 2012-09-23 12:25:39 -04:00
Yosy
9cd25eead2 Bug 792968 - Replace some regular expression string matches with String.startsWith and replace /^https?/ URI scheme tests with /^https?$/. r=dao 2012-09-23 16:48:23 +02:00
Andres Hernandez
b783039a2c Bug 781973 - Use filepicker's open() instead of the obsolete show() in /browser. r=bbondy 2012-09-19 17:21:38 -06:00
Margaret Leibovic
2ef7f8b096 Bug 695399 - Remove synchronous calls to nsICacheSession::openCacheEntry in pageInfo.js. r=gavin 2012-09-13 18:22:35 +02:00
Atte Kemppila
8a97420e7f Bug 771888 - Fix tree selection handling in Page Info > Media. r=adw 2012-09-01 11:35:56 -04:00
Ehsan Akhgari
f4b598bf08 Bug 722872 - Part 1: Add nsITransferable::Init(nsILoadContext*), enforce that it's called in debug builds, and add nsIDOMDocument* arguments to nsIClipboardHelper methods; r=roc
This patch does the following:

* It adds nsITransferable::Init(nsILoadContext*).  The load context
  might be null, which means that the transferable is non-private, but
  if it's non-null, we extract the boolean value for the privacy mode
  and store it in the transferable.
* It adds checks in debug builds to make sure that Init is always
  called, in form of fatal assertions.
* It adds nsIDOMDocument* agruments to nsIClipboardHelper methods which
  represent the document that the string is coming from.
  nsIClipboardHelper implementation internally gets the nsILoadContext
  from that and passes it on to the transferable upon creation.  The
  reason that I did this was that nsIClipboardHelper is supposed to be a
  high-level helper, and in most of its call sites, we have easy access
  to a document object.
* It modifies all of the call sites of the above interfaces according to
  this change.
* It adds a GetLoadContext helper to nsIDocument to help with changing
  the call sites.
2012-04-16 22:14:01 -04:00
L. David Baron
4c91539c7a Unprefix the border-image-* properties and add a temporary alias for -moz-border-image (but not for its subproperties, which we haven't shipped prefixed). (Bug 713643, patch 5) r=bzbarsky 2012-05-30 22:19:49 -07:00
Raymond Lee
95568a9cec Bug 733297 - When saving a video from Page Info, the file picker title is 'Save Image'. r=jaws 2012-05-21 14:26:18 +08:00
Gervase Markham
82ff7027aa Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
Geoff Lankow
8c5fdd1d03 Bug 718255 - Merge nsIPrefBranch2 with nsIPrefBranch - Part D, remove uses of nsIPrefBranch2 in browser/ and mobile/ ; r=bsmedberg 2012-01-17 14:34:51 +13:00
Maxim Iorsh
fd144f8520 Bug 460146 - CSS3 border-image images should appear in Page Info -> Media; r=db48x 2012-02-05 19:07:18 +00:00
Felix Fung
6b2098fe3a Bug 275223 - Enable Tree View Columns to be Sorted in Page Info. r=db48x 2012-01-26 16:10:00 -05:00
Phil Ringnalda
7687477d87 Backed out 2e37e7223aa3 (bug 460146) for orange 2012-01-25 21:08:17 -08:00
Maxim Iorsh
07bc1ca8b1 Bug 460146 - CSS3 border-image images should appear in Page Info ? Media. r=db48x 2012-01-25 18:49:23 -08:00
Felix Fung
9d7715e47c Bug 632119 - Fix View Image Info for Data URIs. r=gavin 2011-12-02 07:33:05 -08:00
Ed Morley
f13392fb42 Bug 614515 - Remove MOZ_SVG conditions. r=roc 2011-05-30 09:34:50 +02:00
Tanner M. Young
bb4910fc47 Bug 377349 - Page info : Media Tab. The broken image indicator is often wrong. r=db48x 2010-06-23 14:24:02 -05:00
Tanner M. Young
94c977f19c Bug 573603 - Speed up Page Info > Media. r=db48x 2010-06-21 19:13:46 -05:00
Tanner M. Young
545d926996 Bug 560258 - Standalone Ogg Audio is not previewed correctly in Page Info > Media. r=db48x 2010-06-21 17:43:42 -05:00
Joe Drew
308e5cd202 Bug 388195 - Remove gopher support. r=jduell,gavin sr=bz 2010-04-16 17:05:47 -04:00
Ehsan Akhgari
ec363e6a46 Bug 492250 - URLs in Page Info Media tab should be LTR; r-gavin 2010-05-23 22:16:50 -04:00
Tanner M. Young
bab4e12c30 Bug 560061 - fix typo. r=dao 2010-04-22 09:16:53 +02:00
Tanner M. Young
f2944f1de0 Bug 448630 - Make audio and video show up in Page Info > Media. r=dao 2010-04-17 11:08:12 +02:00
Tanner M. Young
17eab0c6a3 Bug 539068 - View Image Info selects the CSS background-image of an image rather than the image itself. r=dao 2010-01-14 11:47:24 +01:00
Tanner M. Young
aeffa875c1 Bug 526721 - "View Image Info" displays the wrong size if the document's first image has the same url, same alt but different scale. r=dao 2009-11-12 08:59:56 +01:00
Tanner M. Young
010894ee17 Bug 526534 - Page Info does not detect multiple instances of the same image on a page if no alt text is provided or the alt text is the same. r=dao 2009-11-11 11:34:30 +01:00
Tanner M. Young
c1b0176709 Bug 524090 - make "View Image Info" scroll to the selected image in the Page Info media tab. r=dao 2009-11-07 19:24:08 +01:00
Tanner M. Young
f02a7b1843 Bug 524092 - fix for compatibility with "View Frames" add-on. r=dao 2009-11-07 12:29:52 +01:00
Tanner M. Young
6be51ca657 Bug 524092 - "View Image Info" command is not carried out if "Page Info" window is already opened. r=dao 2009-11-06 08:04:38 +01:00
Dão Gottwald
276b640707 Bug 525190 - Refactor the way pageInfo.js handles arguments. r=db48x 2009-10-31 01:50:57 +01:00
Dão Gottwald
6c62e29e31 Bug 524106 - "View Image Info" selects the wrong image when there are multiple images with the same src. r=db48x 2009-10-29 08:42:45 +01:00
Tanner M. Young
b53e3ce12b Bug 517902 - "Reimplement image properties, using the existing "Media" panel" [ui-r=faaborg r=db48x sr=mconnor] 2009-10-22 19:32:49 -05:00