Bug 1580735 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.

Note that the page includes this CSS:
```

@media print {
	@page {
	  margin: 0.5cm;
	  /* size: A4 landscape; */
	  max-height:100%;
	max-width:100%
	}
	.page {
		-webkit-transform: rotate(-90deg);
		-moz-transform: rotate(-90deg);
		left: -25%;
		position: absolute;
		top:21%;
	}
}

/* firefox */
@-moz-document url-prefix() { 
	.page {
		top: 200px;
		left: -20%;		
	}
}
```

Julien, do you get "expected results" if you set about:config pref `layout.css.moz-document.content.enabled` to true?  (It defaults to false in Nightly, which means Nightly doesn't get the firefox-specific CSS at the bottom., which we apparently need  It's enabled in Firefox release, though, until bug 1449753 is resolved some day.)
Note that the page includes this CSS:
```css
@media print {
	@page {
	  margin: 0.5cm;
	  /* size: A4 landscape; */
	  max-height:100%;
	max-width:100%
	}
	.page {
		-webkit-transform: rotate(-90deg);
		-moz-transform: rotate(-90deg);
		left: -25%;
		position: absolute;
		top:21%;
	}
}

/* firefox */
@-moz-document url-prefix() { 
	.page {
		top: 200px;
		left: -20%;		
	}
}
```

Julien, do you get "expected results" if you set about:config pref `layout.css.moz-document.content.enabled` to true?  (It defaults to false in Nightly, which means Nightly doesn't get the firefox-specific CSS at the bottom., which we apparently need  It's enabled in Firefox release, though, until bug 1449753 is resolved some day.)

Back to Bug 1580735 Comment 1