Skip to content

Commit

Permalink
Add <div> guards around <permission> elements
Browse files Browse the repository at this point in the history
This allows user agents without knowledge of <permission> to correctly generate end tags without <permission> elements becoming nested into each other.
  • Loading branch information
engedy committed Oct 10, 2023
1 parent eeee2ea commit fa47688
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pepc.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
<body>
<div class="before"></div>
<div class="content">
<permission id="geolocation" type="geolocation">
<permission id="camera" type="camera">
<permission id="microphone" type="microphone">
<permission id="camera-microphone" type="camera microphone">
<div><permission id="geolocation" type="geolocation"></div>
<div><permission id="camera" type="camera"></div>
<div><permission id="microphone" type="microphone"></div>
<div><permission id="camera-microphone" type="camera microphone"></div>
</div>
<div class="github-fork-ribbon-wrapper right">
<div class="github-fork-ribbon">
Expand Down

0 comments on commit fa47688

Please sign in to comment.