Skip to content

Commit 447f545

Browse files
committed
Merge pull request #140 from mseddon/performance-timing-fixes
Fix #139: PerformanceTiming attributes should be Double
2 parents c1662ec + 275a178 commit 447f545

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

src/main/scala/org/scalajs/dom/raw/lib.scala

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -4357,7 +4357,7 @@ class PerformanceTiming extends js.Object {
43574357
*
43584358
* MDN
43594359
*/
4360-
def redirectStart: Int = js.native
4360+
def redirectStart: Double = js.native
43614361

43624362
/**
43634363
* The PerformanceTiming.domainLookupEnd read-only property returns an unsigned
@@ -4368,7 +4368,7 @@ class PerformanceTiming extends js.Object {
43684368
*
43694369
* MDN
43704370
*/
4371-
def domainLookupEnd: Int = js.native
4371+
def domainLookupEnd: Double = js.native
43724372

43734373
/**
43744374
* The PerformanceTiming.responseStart read-only property returns an unsigned
@@ -4378,7 +4378,7 @@ class PerformanceTiming extends js.Object {
43784378
*
43794379
* MDN
43804380
*/
4381-
def responseStart: Int = js.native
4381+
def responseStart: Double = js.native
43824382

43834383
/**
43844384
* The PerformanceTiming.domComplete read-only property returns an unsigned long
@@ -4388,7 +4388,7 @@ class PerformanceTiming extends js.Object {
43884388
*
43894389
* MDN
43904390
*/
4391-
def domComplete: Int = js.native
4391+
def domComplete: Double = js.native
43924392

43934393
/**
43944394
* The PerformanceTiming.domainLookupStart read-only property returns an
@@ -4399,7 +4399,7 @@ class PerformanceTiming extends js.Object {
43994399
*
44004400
* MDN
44014401
*/
4402-
def domainLookupStart: Int = js.native
4402+
def domainLookupStart: Double = js.native
44034403

44044404
/**
44054405
* The PerformanceTiming.loadEventStart read-only property returns an unsigned
@@ -4409,7 +4409,7 @@ class PerformanceTiming extends js.Object {
44094409
*
44104410
* MDN
44114411
*/
4412-
def loadEventStart: Int = js.native
4412+
def loadEventStart: Double = js.native
44134413

44144414
/**
44154415
* The PerformanceTiming.unloadEventEnd read-only property returns an unsigned
@@ -4420,7 +4420,7 @@ class PerformanceTiming extends js.Object {
44204420
*
44214421
* MDN
44224422
*/
4423-
def unloadEventEnd: Int = js.native
4423+
def unloadEventEnd: Double = js.native
44244424

44254425
/**
44264426
* The PerformanceTiming.fetchStart read-only property returns an unsigned long
@@ -4430,7 +4430,7 @@ class PerformanceTiming extends js.Object {
44304430
*
44314431
* MDN
44324432
*/
4433-
def fetchStart: Int = js.native
4433+
def fetchStart: Double = js.native
44344434

44354435
/**
44364436
* The PerformanceTiming.requestStart read-only property returns an unsigned
@@ -4442,7 +4442,7 @@ class PerformanceTiming extends js.Object {
44424442
*
44434443
* MDN
44444444
*/
4445-
def requestStart: Int = js.native
4445+
def requestStart: Double = js.native
44464446

44474447
/**
44484448
* The PerformanceTiming.domInteractive read-only property returns an unsigned
@@ -4453,7 +4453,7 @@ class PerformanceTiming extends js.Object {
44534453
*
44544454
* MDN
44554455
*/
4456-
def domInteractive: Int = js.native
4456+
def domInteractive: Double = js.native
44574457

44584458
/**
44594459
* The PerformanceTiming.navigationStart read-only property returns an unsigned
@@ -4464,7 +4464,7 @@ class PerformanceTiming extends js.Object {
44644464
*
44654465
* MDN
44664466
*/
4467-
def navigationStart: Int = js.native
4467+
def navigationStart: Double = js.native
44684468

44694469
/**
44704470
* The PerformanceTiming.connectEnd read-only property returns an unsigned long
@@ -4477,7 +4477,7 @@ class PerformanceTiming extends js.Object {
44774477
*
44784478
* MDN
44794479
*/
4480-
def connectEnd: Int = js.native
4480+
def connectEnd: Double = js.native
44814481

44824482
/**
44834483
* The PerformanceTiming.loadEventEnd read-only property returns an unsigned
@@ -4487,7 +4487,7 @@ class PerformanceTiming extends js.Object {
44874487
*
44884488
* MDN
44894489
*/
4490-
def loadEventEnd: Int = js.native
4490+
def loadEventEnd: Double = js.native
44914491

44924492
/**
44934493
* The PerformanceTiming.connectStart read-only property returns an unsigned
@@ -4499,7 +4499,7 @@ class PerformanceTiming extends js.Object {
44994499
*
45004500
* MDN
45014501
*/
4502-
def connectStart: Int = js.native
4502+
def connectStart: Double = js.native
45034503

45044504
/**
45054505
* The PerformanceTiming.responseEnd read-only property returns an unsigned long
@@ -4509,7 +4509,7 @@ class PerformanceTiming extends js.Object {
45094509
*
45104510
* MDN
45114511
*/
4512-
def responseEnd: Int = js.native
4512+
def responseEnd: Double = js.native
45134513

45144514
/**
45154515
* The PerformanceTiming.domLoading read-only property returns an unsigned long
@@ -4519,7 +4519,7 @@ class PerformanceTiming extends js.Object {
45194519
*
45204520
* MDN
45214521
*/
4522-
def domLoading: Int = js.native
4522+
def domLoading: Double = js.native
45234523

45244524
/**
45254525
* The PerformanceTiming.redirectEnd read-only property returns an unsigned long
@@ -4530,7 +4530,7 @@ class PerformanceTiming extends js.Object {
45304530
*
45314531
* MDN
45324532
*/
4533-
def redirectEnd: Int = js.native
4533+
def redirectEnd: Double = js.native
45344534

45354535
/**
45364536
* The PerformanceTiming.unloadEventStart read-only property returns an
@@ -4541,7 +4541,7 @@ class PerformanceTiming extends js.Object {
45414541
*
45424542
* MDN
45434543
*/
4544-
def unloadEventStart: Int = js.native
4544+
def unloadEventStart: Double = js.native
45454545

45464546
/**
45474547
* The PerformanceTiming.domContentLoadedEventStart read-only property
@@ -4552,7 +4552,7 @@ class PerformanceTiming extends js.Object {
45524552
*
45534553
* MDN
45544554
*/
4555-
def domContentLoadedEventStart: Int = js.native
4555+
def domContentLoadedEventStart: Double = js.native
45564556

45574557
/**
45584558
* The PerformanceTiming.domContentLoadedEventEnd read-only property returns
@@ -4562,7 +4562,7 @@ class PerformanceTiming extends js.Object {
45624562
*
45634563
* MDN
45644564
*/
4565-
def domContentLoadedEventEnd: Int = js.native
4565+
def domContentLoadedEventEnd: Double = js.native
45664566

45674567
/**
45684568
* Is a jsonizer returning a JSON object representing the specific

0 commit comments

Comments
 (0)