Skip to content
This repository has been archived by the owner on Apr 10, 2024. It is now read-only.

Commit

Permalink
Merge mozilla-inbound to mozilla-central based on a green PGO changes…
Browse files Browse the repository at this point in the history
…et with some green mobile specific patches pushed on top of it; a=merge
  • Loading branch information
ehsan committed Apr 24, 2012
2 parents 06c0d7d + b6dbf04 commit 6988cf3
Show file tree
Hide file tree
Showing 20 changed files with 558 additions and 18 deletions.
6 changes: 6 additions & 0 deletions dom/base/StructuredCloneTags.h
Expand Up @@ -44,9 +44,15 @@ namespace dom {

enum StructuredCloneTags {
SCTAG_BASE = JS_SCTAG_USER_MIN,

// These tags are used only for main thread structured clone.
SCTAG_DOM_BLOB,
SCTAG_DOM_FILE,
SCTAG_DOM_FILELIST,

// These tags are used for both main thread and workers.
SCTAG_DOM_IMAGEDATA,

SCTAG_DOM_MAX
};

Expand Down
59 changes: 57 additions & 2 deletions dom/base/nsJSEnvironment.cpp
Expand Up @@ -86,6 +86,8 @@
#include "WrapperFactory.h"
#include "nsGlobalWindow.h"
#include "nsScriptNameSpaceManager.h"
#include "StructuredCloneTags.h"
#include "mozilla/dom/ImageData.h"

#include "nsJSPrincipals.h"

Expand Down Expand Up @@ -113,6 +115,7 @@
#include "sampler.h"

using namespace mozilla;
using namespace mozilla::dom;

const size_t gStackSize = 8192;

Expand Down Expand Up @@ -3610,7 +3613,36 @@ NS_DOMReadStructuredClone(JSContext* cx,
uint32_t data,
void* closure)
{
// We don't currently support any extensions to structured cloning.
if (tag == SCTAG_DOM_IMAGEDATA) {
// Read the information out of the stream.
uint32_t width, height;
JS::Value dataArray;
if (!JS_ReadUint32Pair(reader, &width, &height) ||
!JS_ReadTypedArray(reader, &dataArray)) {
return nsnull;
}
MOZ_ASSERT(dataArray.isObject());

// Construct the ImageData.
nsCOMPtr<nsIDOMImageData> imageData = new ImageData(width, height,
dataArray.toObject());
// Wrap it in a jsval.
JSObject* global = JS_GetGlobalForScopeChain(cx);
if (!global) {
return nsnull;
}
nsCOMPtr<nsIXPConnectJSObjectHolder> wrapper;
JS::Value val;
nsresult rv =
nsContentUtils::WrapNative(cx, global, imageData, &val,
getter_AddRefs(wrapper));
if (NS_FAILED(rv)) {
return nsnull;
}
return val.toObjectOrNull();
}

// Don't know what this is. Bail.
nsDOMClassInfo::ThrowJSException(cx, NS_ERROR_DOM_DATA_CLONE_ERR);
return nsnull;
}
Expand All @@ -3621,7 +3653,30 @@ NS_DOMWriteStructuredClone(JSContext* cx,
JSObject* obj,
void *closure)
{
// We don't currently support any extensions to structured cloning.
nsCOMPtr<nsIXPConnectWrappedNative> wrappedNative;
nsContentUtils::XPConnect()->
GetWrappedNativeOfJSObject(cx, obj, getter_AddRefs(wrappedNative));
nsISupports *native = wrappedNative ? wrappedNative->Native() : nsnull;

nsCOMPtr<nsIDOMImageData> imageData = do_QueryInterface(native);
if (imageData) {
// Prepare the ImageData internals.
PRUint32 width, height;
JS::Value dataArray;
if (NS_FAILED(imageData->GetWidth(&width)) ||
NS_FAILED(imageData->GetHeight(&height)) ||
NS_FAILED(imageData->GetData(cx, &dataArray)))
{
return false;
}

// Write the internals to the stream.
return JS_WriteUint32Pair(writer, SCTAG_DOM_IMAGEDATA, 0) &&
JS_WriteUint32Pair(writer, width, height) &&
JS_WriteTypedArray(writer, dataArray);
}

// Don't know what this is. Bail.
nsDOMClassInfo::ThrowJSException(cx, NS_ERROR_DOM_DATA_CLONE_ERR);
return JS_FALSE;
}
Expand Down
3 changes: 3 additions & 0 deletions dom/tests/mochitest/bugs/Makefile.in
Expand Up @@ -157,6 +157,9 @@ _TEST_FILES = \
test_bug735237.html \
test_bug739038.html \
test_bug740811.html \
test_bug743615.html \
utils_bug743615.js \
worker_bug743615.js \
$(NULL)

libs:: $(_TEST_FILES)
Expand Down
84 changes: 84 additions & 0 deletions dom/tests/mochitest/bugs/test_bug743615.html
@@ -0,0 +1,84 @@
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=743615
-->
<head>
<meta charset="utf-8">
<title>Test for Bug 743615</title>
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<script type="application/javascript" src="utils_bug743615.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=743615">Mozilla Bug 743615</a>
<p id="display"></p>
<div id="content" style="display: none">
<canvas id="c" width="200" height="200"><canvas>
</div>
<pre id="test">
<script type="application/javascript">

/** Test for structured cloning ImageData. **/

SimpleTest.waitForExplicitFinish();
window.addEventListener('message', windowMessage);
startTest();

function startTest() {
// Make an ImageData.
var ctx = document.getElementById('c').getContext('2d');
ctx.fillStyle = 'rgb(';
ctx.fillRect(30, 30, 50, 50);

// Make a blank ImageData.
var imageData = ctx.createImageData(200, 200);
is(imageData.data.length, imageData.width * imageData.height * 4,
'right size for data');

// Write some things into it.
var pattern = makePattern(imageData.data.length, 42, 7);
setPattern(imageData, pattern);
ok(checkPattern(imageData, pattern), 'Can read it back before sending');

// PostMessage it to ourselves.
window.postMessage({ imageData: imageData,
pattern: pattern,
dataRef: imageData.data }, '*');
}

function windowMessage(evt) {
// Check the pattern we received.
var imageData = evt.data.imageData;
var pattern = evt.data.pattern;
ok(checkPattern(imageData, pattern),
'postMessage from self worked correctly');

// We're not spec compliant on this yet.
todo_is(imageData.data, evt.data.dataRef,
'Should have backrefs for imagedata buffer');

// Make a new pattern, and send it to a worker.
pattern = makePattern(imageData.data.length, 4, 3);
setPattern(imageData, pattern);
var worker = new Worker('worker_bug743615.js');
worker.onmessage = workerMessage;
worker.postMessage( {imageData: imageData, pattern: pattern });
}

function workerMessage(evt) {
// Relay the results of the worker-side tests.
is(evt.data.statusMessage, 'PASS', evt.data.statusMessage);

// Test what the worker sent us.
ok(checkPattern(evt.data.imageData, evt.data.pattern),
'postMessage from worker worked correctly');

// All done.
SimpleTest.finish();
}

</script>
</pre>
</body>
</html>
25 changes: 25 additions & 0 deletions dom/tests/mochitest/bugs/utils_bug743615.js
@@ -0,0 +1,25 @@
function makePattern(len, start, inc) {
var pattern = [];
while(len) {
pattern.push(start);
start = (start + inc) % 256;
--len;
}
return pattern;
}

function setPattern(imageData, pattern) {
if (pattern.length != imageData.data.length)
throw Error('Invalid pattern');
for (var i = 0; i < pattern.length; ++i)
imageData.data[i] = pattern[i];
}

function checkPattern(imageData, pattern) {
if (pattern.length != imageData.data.length)
throw Error('Invalid pattern');
for (var i = 0; i < pattern.length; ++i)
if (imageData.data[i] != pattern[i])
return false;
return true;
}
38 changes: 38 additions & 0 deletions dom/tests/mochitest/bugs/worker_bug743615.js
@@ -0,0 +1,38 @@
importScripts('utils_bug743615.js');

self.onmessage = function onMessage(evt) {
// Check the pattern that was sent.
var imageData = evt.data.imageData;
var pattern = evt.data.pattern;
var statusMessage = checkPattern(imageData, pattern)
? 'PASS' : 'Got corrupt typed array in worker';

// Check against the interface object.
if (!(imageData instanceof ImageData))
statusMessage += ", Bad interface object in worker";

// Check the getters.
if (imageData.width * imageData.height != imageData.data.length / 4) {
statusMessage += ", Bad ImageData getters in worker: "
statusMessage += [imageData.width, imageData.height].join(', ');
}

// Make sure that writing to .data is a no-op when not in strict mode.
var origData = imageData.data;
var threw = false;
try {
imageData.data = [];
imageData.width = 2;
imageData.height = 2;
} catch(e) { threw = true; }
if (threw || imageData.data !== origData)
statusMessage = statusMessage + ", Should silently ignore sets";



// Send back a new pattern.
pattern = makePattern(imageData.data.length, 99, 2);
setPattern(imageData, pattern);
self.postMessage({ statusMessage: statusMessage, imageData: imageData,
pattern: pattern });
}

0 comments on commit 6988cf3

Please sign in to comment.