aboutsummaryrefslogtreecommitdiff
path: root/html-test/ref/Bug679.html
Commit message (Collapse)AuthorAgeFilesLines
* html-test: Always set languageJoachim Breitner2021-02-221-0/+6
| | | | | | | | | | from ghc-9.2 on, the “default” langauge of GHC is expected to change more wildly. To prepare for that (and unblock https://gitlab.haskell.org/ghc/ghc/-/merge_requests/4853), this sets the language for all the test files to `Haskell2010`. This should insolate this test suite against changes to the default. Cherry-picked from https://github.com/haskell/haddock/pull/1341
* Merge remote-tracking branch 'origin/ghc-head' into wip/ghc-head-mergeBen Gamari2021-02-061-1/+1
|\
| * Accept testsAlex Biehl2021-01-091-1/+1
| |
* | Merge branch 'ghc-8.8' into ghc-8.10Alec Theriault2020-03-201-1/+1
|\ \ | |/ |/|
| * Rename 'NewOcean' theme to 'Linuwial'Alec Theriault2018-11-111-1/+1
| |
* | Removes `haddock-test`s dependency on `xml`/`xhtml` (#1027)Alec Theriault2019-02-101-8/+6
|/ | | | | | | | | | | This means that `html-test`, `latex-test`, `hoogle-test`, and `hypsrc-test` now only depend on GHC boot libs. So we should now be able to build and run these as part of GHC's testsuite. \o/ The reference output has changed very slightly, in three ways: * we don't convert quotes back into `"` as the `xml` lib did * we don't add extra ` ` as the `xml` lib did * we now remove the entire footer `div` (instead of just emptying it)
* Merge branch 'ghc-8.6' into wip/new-oceanAlec Theriault2018-11-091-1/+3
|\
| * Only run MathJax on entities with "mathjax" class (#960)Alec Theriault2018-11-051-1/+3
| | | | | | | | | | | | | | Correspondingly, we wrap all inline/diplay math in <span class="mathjax"> ... the math .... </span> This fixes #959.
* | Accept HTML output changesAlec Theriault2018-11-071-7/+11
| |
* | Update test-suite reference html pagesNuno Alexandre2018-10-181-3/+3
| |
* | html-test --acceptHerbert Valerio Riedel2018-10-181-1/+1
| |
* | Add an initial-scale property to all haddock pagesNuno Alexandre2018-10-181-0/+1
| | | | | | | | | | This solves an issue reported about the content looking incredibly small on mobile devices.
* | Update html-test reference filesNuno Alexandre2018-10-181-3/+4
|/ | | | | The package name element in the package-header is now a div instead of a paragraph, and it is now above the menu ul.links instead of below.
* Use `ClassOpSig` instead of `TypeSig` for class methods (#835)Alec Theriault2018-06-131-8/+0
| | | | | | | | * Fix minimal pragma handling Class declarations contain 'ClassOpSig' not 'Typesig'. This should fix #834. * Accept html-test output
* Show where instances are defined (#748)Alec Theriault2018-03-211-2/+10
| | | | | | | | | | | | | | * Indicate source module of instances Above instance, we now also display a link to the module where the instance was defined. This is sometimes helpful in figuring out what to import. * Source module for type/data families too * Remove parens * Accept tests
* Make testsuite work with haddock-1.19.0 release (#766)Alexander Biehl2018-03-021-9/+9
|
* Fix infinite loop when specializing instance heads (#723)Alec Theriault2018-02-011-0/+196
* Fix infinite loop when specializing instance heads The bug can only be triggered from TH, hence why it went un-noticed for so long. * Add test for #679 and #710