Status Update
Comments
sw...@chromium.org <sw...@chromium.org> #2
I notice the same issue and LogCat shows the following message:
Google Play services out of date. Requires 3159100 but found 3136130
Google Play services out of date. Requires 3159100 but found 3136130
lg...@chromium.org <lg...@chromium.org> #3
Same here.
"Google Play services out of date. Requires 3159100 but found 3136130"
"Google Play services out of date. Requires 3159100 but found 3136130"
ph...@chromium.org <ph...@chromium.org> #4
me as well....
Google Play services out of date. Requires 3159100 but found 3136130
Google Play services out of date. Requires 3159100 but found 3136130
ha...@google.com <ha...@google.com> #6
Having the same issue:
07-25 00:03:54.998: W/GooglePlayServicesUtil(27293): Google Play services out of date. Requires 3159100 but found 3158130
07-25 00:03:54.998: W/GooglePlayServicesUtil(27293): Google Play services out of date. Requires 3159100 but found 3158130
ha...@google.com <ha...@google.com> #7
same
ha...@google.com <ha...@google.com> #8
SAME ! - Google can't do sth working in 100 percent?
is...@google.com <is...@google.com> #9
same issue - Google Play services out of date. Requires 3159100 but found 3158130
rb...@chromium.org <rb...@chromium.org> #10
Having the same issure:
07-26 03:14:00.731: W/GooglePlayServicesUtil(2566): Google Play services out of date. Requires 3159100 but found 3136130
07-26 03:14:00.731: W/GooglePlayServicesUtil(2566): Google Play services out of date. Requires 3159100 but found 3136130
Description
Example URL:
Steps to reproduce the problem:
1. Have a grid template like this:
```html
<div class="container">
<div class="sidebar">
<div class="sidebar__header">Sidebar header</div>
</div>
<div class="header">Header</div>
<div class="content">Content</div>
</div>
```
```css
html, body {
height: 100%;
margin: 0;
}
.container {
height: 100%;
display: grid;
grid-template-areas:
'sidebar header'
'sidebar content';
grid-template-rows: auto minmax(1px, 1fr);
grid-template-columns: auto 1fr;
}
.sidebar {
grid-area: sidebar;
}
.sidebar__header {
height: 200px;
border: 1px solid green;
}
.header {
grid-area: header;
}
.content {
grid-area: content;
border: 1px solid red;
}
```
What is the expected behavior?
The header area (class="header") should take the minimum required space for its content.
The content area (class="content) should fill the remaining height of its grid. So minmax(1px, 1fr) should result in 1fr in this scenario.
What went wrong?
The height of the header area is affected by the content of the sidebar area.
Does it occur on multiple sites: N/A
Is it a problem with a plugin? No
Did this work before? Yes 79
Does this work in other browsers? Yes
Chrome version: 80.0.3987.87 Channel: stable
OS Version: OS X 10.14.6
Flash Version: