mirror of
https://github.com/denoland/deno.git
synced 2025-08-31 15:57:53 +00:00
fix(ext/web): writability of ReadableStream.from
(#20836)
Fixes a WPT in `URL` and `ReadableStream`. Some unrelated WPT expectation changes due to WPT update.
This commit is contained in:
parent
84c9300aff
commit
2665ca103e
24 changed files with 1064 additions and 307 deletions
|
@ -212,7 +212,7 @@ class PerformanceEntry {
|
|||
}));
|
||||
}
|
||||
}
|
||||
webidl.configurePrototype(PerformanceEntry);
|
||||
webidl.configureInterface(PerformanceEntry);
|
||||
const PerformanceEntryPrototype = PerformanceEntry.prototype;
|
||||
|
||||
const _detail = Symbol("[[detail]]");
|
||||
|
@ -279,7 +279,7 @@ class PerformanceMark extends PerformanceEntry {
|
|||
}));
|
||||
}
|
||||
}
|
||||
webidl.configurePrototype(PerformanceMark);
|
||||
webidl.configureInterface(PerformanceMark);
|
||||
const PerformanceMarkPrototype = PerformanceMark.prototype;
|
||||
class PerformanceMeasure extends PerformanceEntry {
|
||||
[_detail] = null;
|
||||
|
@ -338,7 +338,7 @@ class PerformanceMeasure extends PerformanceEntry {
|
|||
}));
|
||||
}
|
||||
}
|
||||
webidl.configurePrototype(PerformanceMeasure);
|
||||
webidl.configureInterface(PerformanceMeasure);
|
||||
const PerformanceMeasurePrototype = PerformanceMeasure.prototype;
|
||||
class Performance extends EventTarget {
|
||||
constructor(key = null) {
|
||||
|
@ -577,7 +577,7 @@ class Performance extends EventTarget {
|
|||
}));
|
||||
}
|
||||
}
|
||||
webidl.configurePrototype(Performance);
|
||||
webidl.configureInterface(Performance);
|
||||
const PerformancePrototype = Performance.prototype;
|
||||
|
||||
webidl.converters["Performance"] = webidl.createInterfaceConverter(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue