[webkit-dev] Importing W3C tests for HTML template elements

2013-11-21 Thread Ryosuke Niwa
Hi,

There has been a lot of discussions about importing W3C tests.

Since I'm already trying to enable HTML template elements, I've decided to
take lead on this and add LayoutTests/w3c directory as we've previously
come to consensus.

I've posted a patch to import some of HTML template elements tests into
LayoutTests/w3c/html-templates at
https://bugs.webkit.org/show_bug.cgi?id=124699

Since W3C is planning to move all tests into web-platform-tests repository:
https://github.com/w3c/web-platform-tests, I didn't feel the need to put it
inside LayoutTests/w3c/web-platform-tests/html-templates but I can do that
if someone feels strongly about it.

- R. Niwa
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-dev


Re: [webkit-dev] Importing W3C tests for HTML template elements

2013-11-21 Thread Ryosuke Niwa
Maciej says he'd rather see w3c directory under imported directory so I'm
doing that.

- R. Niwa


On Thu, Nov 21, 2013 at 5:01 PM, Ryosuke Niwa rn...@webkit.org wrote:

 Hi,

 There has been a lot of discussions about importing W3C tests.

 Since I'm already trying to enable HTML template elements, I've decided to
 take lead on this and add LayoutTests/w3c directory as we've previously
 come to consensus.

 I've posted a patch to import some of HTML template elements tests into
 LayoutTests/w3c/html-templates at
 https://bugs.webkit.org/show_bug.cgi?id=124699

 Since W3C is planning to move all tests into web-platform-tests
 repository: https://github.com/w3c/web-platform-tests, I didn't feel the
 need to put it inside LayoutTests/w3c/web-platform-tests/html-templates but
 I can do that if someone feels strongly about it.

 - R. Niwa

___
webkit-dev mailing list
webkit-dev@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-dev


Re: [webkit-dev] Enabling HTMLTemplateElement by default

2013-11-21 Thread Anne van Kesteren
On Wed, Nov 20, 2013 at 9:20 AM, Ryosuke Niwa rn...@webkit.org wrote:
 HTMLTemplateElement has been shipped by Chrome and Firefox for a while
 and the specification has been quite stable at this point:
 http://www.w3.org/TR/html-templates/

That specification has issues and is effectively obsolete. I recommend
reading the bits about template in http://whatwg.org/C


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


Re: [webkit-dev] Importing W3C tests for HTML template elements

2013-11-21 Thread Sergio Villar Senin
On 21/11/13 09:16, Ryosuke Niwa wrote:
 Maciej says he'd rather see w3c directory under imported directory so
 I'm doing that.

That was not done for other set of imported tests. Are you planning to
move them also to that same place?

BR

___
webkit-dev mailing list
webkit-dev@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-dev


Re: [webkit-dev] C stack direction

2013-11-21 Thread Steven Coul (scoul)
If it was code in JavaScriptCore that was no longer used I could see the point,

But since it's WTF functionality that isn't being used in another component 
atm. I would tend to keep it. 

But then I've always hated ( and been bitten by ) things like its allways 
going to be 32bit, chars are always signed, stacks always grow down,  
everything is little-endian etc. So maybe I'm over-protective. 

Just my 2c.

Thanks.

-Original Message-
From: webkit-dev-boun...@lists.webkit.org 
[mailto:webkit-dev-boun...@lists.webkit.org] On Behalf Of Mark Lam
Sent: Wednesday, November 20, 2013 2:25 PM
To: webkit-dev@lists.webkit.org Development
Subject: [webkit-dev] C stack direction

Hi folks,

I'm currently doing some work involving checks on the bounds of the native 
stack.  According to WTF::StackBounds, it appears that WINCE is the only port 
that can potentially have a stack that grows up.  Is anyone still building, 
testing, and using this configuration with an upward growing stack?  I'm 
wondering whether to drop support for upward growing stacks altogether.  Our 
JITs already don't support it.  Any opinions?

Thanks.

Mark

___
webkit-dev mailing list
webkit-dev@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-dev
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-dev


Re: [webkit-dev] C stack direction

2013-11-21 Thread Darin Adler
On Nov 21, 2013, at 5:33 AM, Steven Coul (scoul) sc...@cisco.com wrote:

 But since it's WTF functionality that isn't being used in another component 
 atm. I would tend to keep it.

Actually, we wouldn’t do that. WTF is only for WebKit, not intended to be a 
general purpose library. We don’t keep things in it that we aren’t using.

— Darin
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-dev


Re: [webkit-dev] Importing W3C tests for HTML template elements

2013-11-21 Thread Bem Jones-Bey
On Nov 21, 2013, at 00:01 , Ryosuke Niwa 
rn...@webkit.orgmailto:rn...@webkit.org wrote:

Hi,

There has been a lot of discussions about importing W3C tests.

Since I'm already trying to enable HTML template elements, I've decided to take 
lead on this and add LayoutTests/w3c directory as we've previously come to 
consensus.

I've posted a patch to import some of HTML template elements tests into 
LayoutTests/w3c/html-templates at https://bugs.webkit.org/show_bug.cgi?id=124699

Since W3C is planning to move all tests into web-platform-tests repository: 
https://github.com/w3c/web-platform-tests, I didn't feel the need to put it 
inside LayoutTests/w3c/web-platform-tests/html-templates but I can do that if 
someone feels strongly about it.

I'm all for this. Are you aware of the script in Tools/Scripts/import-w3c-tests 
? By default, it imports into LayoutTests/w3c.

- Bem
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-dev


Re: [webkit-dev] Importing W3C tests for HTML template elements

2013-11-21 Thread Ryosuke Niwa
On Fri, Nov 22, 2013 at 12:15 AM, Sergio Villar Senin svil...@igalia.comwrote:

 On 21/11/13 09:16,
 - R. Niwa
 wrote:
  Maciej says he'd rather see w3c directory under imported directory so
  I'm doing that.

 That was not done for other set of imported tests. Are you planning to
 move them also to that same place?


The idea is that.  I don't intend on doing that work myself.

- R. Niwa
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-dev