| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* LayoutTests/transforms/2d/transform-borderbox.html
No chromium baseline (mac one differs due to fonts).
* LayoutTests/tables/mozilla_expected_failures/bugs/bug220653.html
Baseline changed upstream.
* LayoutTests/svg/custom/svg-fonts-in-html.html
Baseline changed upstream.
* LayoutTests/svg/custom/altglyph.svg
No chromium baseline (mac one differs due to fonts + scrollbar).
Review URL: http://codereview.chromium.org/10646
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5290 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
| |
Review URL: http://codereview.chromium.org/10838
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5269 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
| |
BUG=4207
TEST=none until common/ results are removed
Review URL: http://codereview.chromium.org/10802
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5240 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
"new Image()" was aliased in the V8 bindings to document.createElement('image').
While the behavior of new Image() doesn't appear to be well-defined in spec,
all other browsers always create an HTML image element, regardless of the type of
the current document. Changed our implementation to conform.
Review URL: http://codereview.chromium.org/10268
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5186 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
| |
forked expected output.
Review URL: http://codereview.chromium.org/10284
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5160 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
| |
change to textareas.
See http://codereview.chromium.org/9704
Also remove test expectations from layout_test_results where
they shouldn't have been in the first place and move them back to being next to the layout test. The changes to the other tests are all just copies from layout_test_results, no manual modifications.
Review URL: http://codereview.chromium.org/9725
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5114 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
| |
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5110 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
| |
Rebaseline css3/keyframes-rule.html.
Review URL: http://codereview.chromium.org/10251
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5103 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
| |
'window.top'.
Review URL: http://codereview.chromium.org/9740
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5102 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
it's not being kept up to date and is therefore not useful. We will
continue to maintain the JSC build, just not its layout test results.
BUG=4207
TEST=none
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4997 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
LayoutTests/http/tests/security/listener/xss-XMLHttpRequest-shortcut.html
LayoutTests/http/tests/security/listener/xss-XMLHttpRequest-addEventListener.html
LayoutTests/http/tests/security/listener/xss-window-onclick-shortcut.html
LayoutTests/http/tests/security/listener/xss-window-onclick-addEventListener.html
LayoutTests/http/tests/security/listener/xss-JSTargetNode-onclick-shortcut.html
LayoutTests/http/tests/security/listener/xss-JSTargetNode-onclick-addEventListener.html
In WebKit r33979 all these layout tests had
alert("document.domain: " + window.document.domain);
changed to
try {
alert("document.domain: " + window.document.domain);
} catch(e) {
}
causing the document.domain access error to no longer be reported. Rebaselining the tests does not compromize what they are testing as if window.domain was accessible the output would change causing failures.
Review URL: http://codereview.chromium.org/9691
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4985 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
| |
code.
Also, make sure that top, window, location, and location.href are not
deletable.
I had to fix a couple of layout tests that rely on top being shadowable.
Review URL: http://codereview.chromium.org/9506
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4984 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
| |
frame-busting code.
Review URL: http://codereview.chromium.org/9688
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4981 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
window.location.
This change disallows shadowing of window and location both when using
var declarations and when defining accessors. Using 'var location =
stuff' will cause a navigation. This is consistent with what Firefox
does.
Also, introduce an explicit valueOf function on location objects so
that implicit string conversions cannot be intercepted to fake the
current location reported by window.location.
Review URL: http://codereview.chromium.org/9636
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4979 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
| |
Review URL: http://codereview.chromium.org/9646
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4896 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Disallow shadowing of window.location using __defineGetter__ and
__defineSetter__.
- Make sure that funtions such as toString on location objects cannot
be overwritten by user functions.
This needs V8 revision 656. This will be put back once we have pushed
that version.
Review URL: http://codereview.chromium.org/8737
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4598 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
LayoutTests\http\tests\security\aboutBlank\xss-DENIED-set-opener.html
LayoutTests\http\tests\security\aboutBlank\xss-DENIED-navigate-opener-document-write.html
LayoutTests\http\tests\security\aboutBlank\xss-DENIED-navigate-opener-javascript-url.html
The original expectations included a security access error where the source was about:blank, but as soon as an about:blank is written to it is supposed to get the URL of the script performing the write. This behaviour matches the error messages seen in Firefox and Internet Explorer.
Review URL: http://codereview.chromium.org/9106
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4596 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
| |
It's accepted (along with the corresponding code change) in the upstream (webkit r36289) and we now have it in our tree.
Review URL: http://codereview.chromium.org/9289
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4578 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
| |
Provide indication that inline even handlers are indeed inline.
Review URL: http://codereview.chromium.org/9037
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4479 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
| |
TBR=eroman
Review URL: http://codereview.chromium.org/8980
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4331 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
disabled. This matches other browsers and is roughly
the patch I sent upstream.
Our classic mode text inputs still needs some love, but
I will do that in a separate change.
BUG=1542
Review URL: http://codereview.chromium.org/8941
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4316 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
| |
only differed by font sizes or form control
drawing.
Review URL: http://codereview.chromium.org/8212
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4299 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
| |
Review URL: http://codereview.chromium.org/8925
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4234 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
| |
Review URL: http://codereview.chromium.org/8847
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4092 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Fixes tests:
LayoutTests/fast/css-generated-content/table-row-group-to-inline.html
LayoutTests/fast/css-generated-content/table-row-group-with-before.html
LayoutTests/fast/css-generated-content/table-row-with-before.html
LayoutTests/fast/css-generated-content/table-with-before.html
Review URL: http://codereview.chromium.org/8205
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4037 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* LayoutTests/fast/html/marquee-scroll.html
New test (landed in r31178) with no chromium baseline -- differs due to text rendering.
* LayoutTests/svg/custom/text-linking.svg
New test (landed in r31859) with no chromium baseline -- differs due to text rendering.
* LayoutTests/svg/custom/text-xy-updates.svg
New test (landed in r31441) with no chromium baseline -- differs due to text rendering.
* LayoutTests/svg/text/kerning.svg
New test (landed in r31342) with no chromium baseline -- differs due to text rendering and scroll bar.
* LayoutTests/svg/text/multichar-glyph.svg
New test (landed in r31310) with no chromium baseline -- differs due to text rendering.
Review URL: http://codereview.chromium.org/8613
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3992 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Judging from the SVN log, these failing baselines were committed by the merge (and were generated with the stroking problem).
This CL updates the baselines to account for (only) the stroking difference.
It looks like two of these baselines (both existing and new baseline) need fixing --
* svg-as-background-1.html -- an area of the image is red, whereas in the mac's baseline it is white.
* svg-as-background-3.html -- the radial gradients are positioned and angled differently than the mac baseline.
Since I don't know the history of these tests, I will just make this small change now, and maybe mark them as fail later.
Review URL: http://codereview.chromium.org/8404
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3991 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
| |
file:// urls do not set a referer so this comment is not applicable.
Review URL: http://codereview.chromium.org/8180
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3990 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
| |
The tests being rebaselined are those rebased post-merge (hence they included the problem).
Review URL: http://codereview.chromium.org/7991
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3962 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
| |
not the text dump) of this test. The new image is more accurate, so rebaselining the test to use it.
Review URL: http://codereview.chromium.org/7923
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3826 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
| |
Review URL: http://codereview.chromium.org/8037
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3813 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
| |
in the pixel tests. These two tests have buttons with focus so
we now have dotted line focus rects on them.
Review URL: http://codereview.chromium.org/8077
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3782 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
| |
Review URL: http://codereview.chromium.org/8049
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3757 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
| |
The purpose of this layout test is to verify that certain malformed JS attribute doesn't cause crash.
V8 passes.
The outputs differ because v8 additionally throws a syntaxerror exception.
Review URL: http://codereview.chromium.org/7861
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3756 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
| |
in test shell is not compatible with the webkit event generation mechanism.
This is to help in pushing this layout test upstream.
R=pam
Review URL: http://codereview.chromium.org/8012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3667 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
| |
Review URL: http://codereview.chromium.org/8005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3650 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
| |
of this test is correct. The test basically uses the plugin object retreived off the dom after the object has been destroyed. This results in an exception being printed to the console, which is ok. This test used to pass before as our layout test plugin never invoked the destroystream handler on the page. This is changed with Dean's fixes to get the layout test plugin on par
with the one in webkit.
R=tony
Review URL: http://codereview.chromium.org/7645
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3581 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
| |
only differ in font sizes.
Review URL: http://codereview.chromium.org/7501
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3577 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
| |
implementation dependent printing of constructors and prototypes.
Review URL: http://codereview.chromium.org/7620
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3523 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
http/tests/misc/frame-default-enc-same-domain.html until we pick up the
upstream fix). I forgot to move 'resources' directory.
Sorry for my stupid mistake (and not running the test after forking).
TBR=darin
Review URL: http://codereview.chromium.org/7448
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3477 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
| |
version of WebKit.
Review URL: http://codereview.chromium.org/7348
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3462 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
| |
for now until we pick up the upstream change. (see what's about to be landed
in Webkit trunk at http://bugs.webkit.org/show_bug.cgi?id=21581)
TEST=pass pending/http/tests/misc/frame-default-enc-same-domain.html
Review URL: http://codereview.chromium.org/7339
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3444 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
| |
The functionality of the test was always correct, but the fonts in the expected output were different on Mac.
(The expected render tree dump was exactly the same in platform/mac dir, which leads me to believe it was never rebaselined)
This is a duplicate of patch 7134. 7134's base path was the external svn path, not the internal one. Sorry for the duplicate!
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3411 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
| |
These baselines are odd in that they test only the first frame of the animation, however this is consistent with the baselines in platform/mac.
Review URL: http://codereview.chromium.org/7315
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3404 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
| |
- Add v8 binding for animation and transition types.
- Update SVGPODTypeWrappers to follow the latest webkit changes.
- Remove a rebaselining that is no longer needed.
Review URL: http://codereview.chromium.org/7298
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3343 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
We used to load the font. Then came the font hacks from afm files
which made it no longer necessary to load the font. The code to
load the font was removed. Then we got rid of the font hacks and
rebaselined everything.
There are lots of updated results (hundreds), but I'm not uploading
them to rietveld. I used grep to figure out which tests have
"ahem" in them and rebaselined them.
Review URL: http://codereview.chromium.org/7097
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3304 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
| |
(it changes capitalization of "c" to "C" in an error message).
TBR=tc@chromium.org
Review URL: http://codereview.chromium.org/7268
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3294 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
- entity-comment-in-style.html: Pixel diff due to fonts.
- entity-comment-in-textarea.html: Pixel diff due to fonts + form control.
- outdent-selection.html: Pixel diff due to webkit regression -- rebaselining to match webkit, filed followup bug: https://bugs.webkit.org/show_bug.cgi?id=21545
- cyclic-proto.html: Differs by capitalization of error message. We have at least one other test rebaselined because of this; v8 team would rather keep their message so forking.
Review URL: http://codereview.chromium.org/7260
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3290 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Use short license header for idl files created by us.
- Unfork XSLTProcessor.idl.
- Merge in minor changes to idl files.
- Remove forked version of layout test that has been fixed upstream
(and which we pass after Node.idl merge).
Review URL: http://codereview.chromium.org/7113
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3286 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
without Arial Unicode MS). These baselines should
be good even on machines with Arial Unicode MS installed because http://codereview.chromium.org/6495 (r3062) changed the font
search order.
BUG=2304
TEST=pass layout tests
Review URL: http://codereview.chromium.org/7036
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3223 0039d316-1c4b-4281-b951-d872f2087c98
|