Do you have a more specific test case for this? For example, the information of its containing block.
I just wrote a simple example:
```
<!DOCTYPE html>
<style>
#target {
border: 1px white solid;
width: 90%;
height: 90%;
scale: 0.5;
}
</style>
<div style="width: 200px; height: 200px; background: green;">
<div id=target></div>
</div>
```
It looks normal to me. The result in Firefox Nightly is the same as in the result in Chrome Canary. We probably need a better example or test file for this.
Bug 1888270 Comment 1 Edit History
Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.
Do you have a more specific test case for this? For example, the information of its containing block.
I just wrote a simple example:
```
<!DOCTYPE html>
<style>
#target {
border: 1px white solid;
width: 90%;
height: 90%;
scale: 0.5;
}
</style>
<div style="width: 200px; height: 200px; background: green;">
<div id=target></div>
</div>
```
It looks normal to me. The result in Firefox Nightly is the same as in the result in Chrome Canary. We probably need a better example or test file for this.
Also, I suspect `1px` with `scale: 0.5` may cause a sub-pixel rendering result and it may make the border disappear in some cases.