Re: Intent to Transition from TBPL to Treeherder

2014-07-27 Thread Mike Hommey
On Fri, Jul 25, 2014 at 12:04:30AM -0400, Ehsan Akhgari wrote:
> Congratulations on getting to this stage!
> 
> I would like to help dogfood this, and want to know if I can trust the data
> parity of Treeherder and TBPL, or if that is something that you would like
> testing on?  IOW, should I keep them both open when watching a tree / try
> push?

For one, Treeherder doesn't hide jobs TBPL hides.

Mike
___
dev-platform mailing list
dev-platform@lists.mozilla.org
https://lists.mozilla.org/listinfo/dev-platform


Re: How to setting border-radius for window without the default style.

2014-07-27 Thread Yuan Xulei(袁徐磊)

On 7/23/14, 5:54 PM, Yonggang Luo wrote:

If you want the background clipped to the rounded border, and the

rounded border to be on the root, then you can't do that.

Is that possible to dynamic creating the border/background of the root,
by modify the underling code in mozilla source code.
That's possible at least on windows. It seems you need to clip the root 
window to the
rounded border on windows. On windows, the shape of the root window is 
rectangle and
cannot be changed by css style. If you want to customize the window 
shape, say, making
 rounded border, you should do that by calling windows API - 
SetWindowRgn[1].  The

code may look like this:

// The root window handle
HWND hWnd = ...;

RECT rect;
GetWindowRect(hWnd, &rect);
INT32 width = rect.right - rect.left;
INT32 height = rect.bottom - rect.top;
SetWindowRoundRgn(hWnd, width, height, iCornerWidth, iCornetHeight);

   void SetWindowRoundRgn(HWND hWnd, INT32 iWidth, INT32 iHeight, INT32 
iCornerWidth, INT32 iCornetHeight)

   {
 HRGN hRgn = CreateRoundRectRgn(0, 0, iWidth , iHeight, 
iCornerWidth, iCornetHeight);

 SetWindowRgn(hWnd, hRgn, true);
 DeleteObject(hRgn);
   }

[1] http://msdn.microsoft.com/en-us/library/aa930600.aspx

___
dev-platform mailing list
dev-platform@lists.mozilla.org
https://lists.mozilla.org/listinfo/dev-platform


Re: Deprecating localstore.rdf

2014-07-27 Thread Jim Porter
On 07/23/2014 07:10 AM, rviti...@mozilla.com wrote:
> Are there any objections or remarks to the deprecation of
> localstore.rdf?

Just to be proactive, is there anything that other applications (read:
Thunderbird) will need to do about this, or will it just automatically work?

- Jim
___
dev-platform mailing list
dev-platform@lists.mozilla.org
https://lists.mozilla.org/listinfo/dev-platform


Re: Intent to support apple-touch-icon with Browser API

2014-07-27 Thread Anne van Kesteren
On Fri, Jul 25, 2014 at 11:04 AM, Ben Francis  wrote:
> It would also be great to speak with people at Apple and Google about a
> deprecation plan.

Emailed the WHATWG:
http://lists.w3.org/Archives/Public/public-whatwg-archive/2014Jul/0163.html


-- 
http://annevankesteren.nl/
___
dev-platform mailing list
dev-platform@lists.mozilla.org
https://lists.mozilla.org/listinfo/dev-platform