Eric Seidel 46a584b4d3 Add a very minimal CSSAgent
Also fixed the exception caused by IndexedDB being
missing.  It was there, just not used by inspector.sky.

R=esprehn@chromium.org, abarth@chromium.org

Review URL: https://codereview.chromium.org/662523003
2014-10-29 14:14:06 -07:00

17 lines
294 B
Plaintext

<script>
function logParams(name, params) {
console.log(name + "(" + JSON.stringify(params, null, " ") + ")");
}
function loggingStub(name) {
return function(params) {
logParams(name, params);
}
}
this.exports = {
logParams: logParams,
loggingStub: loggingStub,
}
</script>