Sha256: 4385aa7327cb1db9ba11733d8c505de8e65f93b97fe8a9fd4ed65722cbc98faa
Contents?: true
Size: 1.36 KB
Versions: 21
Compression:
Stored size: 1.36 KB
Contents
<% if page.dom.transitions.any? && (!page.body.empty? || !page.response.body.empty?) && (page.body != page.response.body) %> <div class="row"> <div class="col-md-6"> <strong> <a id="<%= id %>-browser_evaluated_body" href="<%= id_to_location id %>/browser_evaluated_body"> Browser-evaluated body </a> </strong> <p class="text-muted"> This is the browser-evaluated body, as a result of the listed <a href="<%= id_to_location id %>/transitions">transitions</a>. </p> <%= code_highlight(page.body, :html, anchor_id: "#{id}-browser_evaluated_body") %> </div> <div class="col-md-6"> <strong> <a id="<%= id %>-http_response_body" href="<%= id_to_location id %>/http_response_body"> HTTP response body </a> </strong> <p class="text-muted"> This is the original <a href="<%= id_to_location id %>/http_response">HTTP response</a> body. </p> <%= code_highlight(page.response.body, :html, anchor_id: "#{id}-http_response_body") %> </div> </div> <hr/> <% end %>
Version data entries
21 entries across 21 versions & 1 rubygems