You cannot post messages because only members can post, and you are not currently a member.
Description:
Discussion of the google-caja project -- an object capabilities based security model for DHTML applications covering production of safe javascript, HTML, and CSS.
http://code.google.com/p/google-caja/
|
|
|
r4891 committed - run junit in parallel...
|
| |
Revision: 4891
Author: feli...@gmail.com
...Log: run junit in parallel
[link]
after 'ant clean AllTests',
running 'ant runtests' takes about 6 minutes on my laptop.
junit tests are independent, they can be run in parallel.
with this change, 'ant runtests' takes about 4.5 minutes... more »
|
|
run junit in parallel (issue 6252050)
|
| |
Reviewers: metaweta, Jasvir,
Description:
after 'ant clean AllTests',
running 'ant runtests' takes about 6 minutes on my laptop.
junit tests are independent, they can be run in parallel.
with this change, 'ant runtests' takes about 4.5 minutes
Please review this at [link]... more »
|
|
shorten the top-level var warning (issue 6244054)
|
| |
Reviewers: Jasvir, metaweta,
Description:
When building caja, one of the warning messages starts
[transform] LINT : css-defs.js:46+1 - 777+7: Top level variable
declarations incompatiable with Caja. Please rewrite as window[
'cssSchema' ] = (function () {
and continues for 730 lines.... more »
|
|
r4889 committed - speed up junit...
|
| |
Revision: 4889
Author: feli...@gmail.com
...Log: speed up junit
[link]
We're running junit with fork="yes" because we want the junit vm to
have different properties than the ant vm. However, we're spawning
a new vm for each junit test, which is unnecessary.... more »
|
|
speed up junit (issue 6250057)
|
| |
Reviewers: metaweta, ihab.awad,
Description:
We're running junit with fork="yes" because we want the junit vm to
have different properties than the ant vm. However, we're spawning
a new vm for each junit test, which is unnecessary.
This adds forkmode="once" to the junit tests.
This reduces 'ant runtests' on my laptop from about 11 minutes to... more »
|
|
replace some minified js with closured js (issue 6257051)
|
| |
Reviewers: Jasvir, metaweta,
Description:
This replaces caja-minified.js and html-sanitizer-minified.js with
versions compiled using Closure's advanced optimizations option.
This is non-scary because all the relevant tests run fine with the
closured versions.
Please review this at [link]... more »
|
|
|