| Differences between
and this patch
- a/LayoutTests/ChangeLog +12 lines
Lines 1-3 a/LayoutTests/ChangeLog_sec1
1
2022-01-05  Brandon Stewart  <brandonstewart@apple.com>
2
3
        border radii may have missing values
4
        https://bugs.webkit.org/show_bug.cgi?id=234866
5
6
        Reviewed by NOBODY (OOPS!).
7
8
        Add test to verify behavior of CSS border radii.
9
10
        * fast/css/border-radius-invalid-pair-expected.txt: Added.
11
        * fast/css/border-radius-invalid-pair.html: Added.
12
1
2022-01-05  Youenn Fablet  <youenn@apple.com>
13
2022-01-05  Youenn Fablet  <youenn@apple.com>
2
14
3
        MediaRecorder should support the bitsPerSecond option
15
        MediaRecorder should support the bitsPerSecond option
- a/LayoutTests/fast/css/border-radius-invalid-pair-expected.txt +2 lines
Line 0 a/LayoutTests/fast/css/border-radius-invalid-pair-expected.txt_sec1
1
2
Test passes if it does not crash
- a/LayoutTests/fast/css/border-radius-invalid-pair.html +20 lines
Line 0 a/LayoutTests/fast/css/border-radius-invalid-pair.html_sec1
1
<html>
2
<style>
3
  object {
4
    border-top-left-radius: 0;
5
  }
6
</style>
7
<script>
8
  onload = () => {
9
    if (window.testRunner)
10
        testRunner.dumpAsText()
11
12
    document.styleSheets[0].insertRule(`object { border-radius: inherit; }`);
13
    document.execCommand('SelectAll');
14
    document.execCommand('Copy');
15
  };
16
</script>
17
<object></object>
18
19
<p>Test passes if it does not crash</p>
20
</html>

Return to Bug 234866