blob: 99401016e455e1708b537512866d0bdccf4c75a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
// Random method on which a breakpoint will be set from the DevTools UI in the
// test.
window.testMethod = function () {
const a = 1;
const b = 2;
return a + b;
};
|